From eea613f298d0c4c761a91870cf1f354a70a990e4 Mon Sep 17 00:00:00 2001 From: Prasad Konka Date: Tue, 20 Feb 2024 12:31:48 -0500 Subject: [PATCH] Feb endpoints, refresh landing page --- .../pkg/chplendpointquerier/aidboxquerier.go | 42 + .../bridgepatientportalwebscraper.go | 5 +- .../chplendpointquerier.go | 39 + .../criterionswebscraper.go | 45 + .../pkg/chplendpointquerier/csvparser.go | 1 - .../inpracsyswebscraper.go | 44 + .../chplendpointquerier/maximuswebscraper.go | 49 + .../chplendpointquerier/tenzingwebscraper.go | 8 +- ...ed_Research_Works_Inc_EndpointSources.json | 10 + .../CHPLEndpointResourcesList.json | 22 +- resources/dev_resources/CHPLProductsInfo.json | 75877 ++++++++-------- ...iterions_Software_Inc_EndpointSources.json | 64 + .../DSS_Inc_1_EndpointSources.json | 10 + .../DSS_Inc_2_EndpointSources.json | 10 + .../DSS_Inc_EndpointSources.json | 2 +- ...Dynamic_Health_IT_Inc_EndpointSources.json | 58 + .../Get_Real_Health_EndpointSources.json | 2 +- .../Greenway_Health_LLC_EndpointSources.json | 64 + ...alth_Care_Systems_Inc_EndpointSources.json | 10 + .../InPracSys_EndpointSources.json | 10 + .../MEDHOST_EndpointSources.json | 12 +- .../MaxRemind_Inc_EndpointSources.json | 10 + .../MedicaSoft_LLC_EndpointSources.json | 10 + .../Practice_Fusion_EndpointSources.json | 4 +- ...ARQ_Practice_Services_EndpointSources.json | 2 +- .../Tenzing_Medical_LLC_EndpointSources.json | 10 + ...lthcare_Solutions_LLC_EndpointSources.json | 26 +- ...ra_Digital_Health_Inc_EndpointSources.json | 80 +- ...ed_Research_Works_Inc_EndpointSources.json | 10 + .../CHPLEndpointResourcesList.json | 186 +- .../prod_resources/CHPLProductsInfo.json | 75877 ++++++++-------- ...iterions_Software_Inc_EndpointSources.json | 70 + .../DSS_Inc_1_EndpointSources.json | 10 + .../DSS_Inc_2_EndpointSources.json | 10 + .../DSS_Inc_EndpointSources.json | 2 +- .../Drchrono_Inc_EndpointSources.json | 18 + ...Dynamic_Health_IT_Inc_EndpointSources.json | 58 + ...c_Systems_Corporation_EndpointSources.json | 164 +- ...t_Insight_Corporation_EndpointSources.json | 110 +- .../Get_Real_Health_EndpointSources.json | 2 +- .../Greenway_Health_LLC_EndpointSources.json | 3790 + ...alth_Care_Systems_Inc_EndpointSources.json | 10 + .../InPracSys_EndpointSources.json | 10 + .../MEDHOST_EndpointSources.json | 26 +- .../MaxRemind_Inc_EndpointSources.json | 10 + .../MedicaSoft_LLC_EndpointSources.json | 10 + ...nology_Inc_MEDITECH_1_EndpointSources.json | 36 + .../Office_Practicum_EndpointSources.json | 18 + .../Practice_Fusion_EndpointSources.json | 10482 ++- ...ARQ_Practice_Services_EndpointSources.json | 2 +- .../Tenzing_Medical_LLC_EndpointSources.json | 10 + .../Veradigm_EndpointSources.json | 224 +- .../athenahealth_Inc_EndpointSources.json | 10376 ++- ...lthcare_Solutions_LLC_EndpointSources.json | 26 +- shinydashboard/lantern/functions/endpoints.R | 49 +- shinydashboard/lantern/server.R | 3 + 56 files changed, 93537 insertions(+), 84588 deletions(-) create mode 100644 endpointmanager/pkg/chplendpointquerier/aidboxquerier.go create mode 100644 endpointmanager/pkg/chplendpointquerier/criterionswebscraper.go create mode 100644 endpointmanager/pkg/chplendpointquerier/inpracsyswebscraper.go create mode 100644 endpointmanager/pkg/chplendpointquerier/maximuswebscraper.go create mode 100644 resources/dev_resources/Applied_Research_Works_Inc_EndpointSources.json create mode 100644 resources/dev_resources/Criterions_Software_Inc_EndpointSources.json create mode 100644 resources/dev_resources/DSS_Inc_1_EndpointSources.json create mode 100644 resources/dev_resources/DSS_Inc_2_EndpointSources.json create mode 100644 resources/dev_resources/Dynamic_Health_IT_Inc_EndpointSources.json create mode 100644 resources/dev_resources/Greenway_Health_LLC_EndpointSources.json create mode 100644 resources/dev_resources/Health_Care_Systems_Inc_EndpointSources.json create mode 100644 resources/dev_resources/InPracSys_EndpointSources.json create mode 100644 resources/dev_resources/MaxRemind_Inc_EndpointSources.json create mode 100644 resources/dev_resources/MedicaSoft_LLC_EndpointSources.json create mode 100644 resources/dev_resources/Tenzing_Medical_LLC_EndpointSources.json create mode 100644 resources/prod_resources/Applied_Research_Works_Inc_EndpointSources.json create mode 100644 resources/prod_resources/Criterions_Software_Inc_EndpointSources.json create mode 100644 resources/prod_resources/DSS_Inc_1_EndpointSources.json create mode 100644 resources/prod_resources/DSS_Inc_2_EndpointSources.json create mode 100644 resources/prod_resources/Dynamic_Health_IT_Inc_EndpointSources.json create mode 100644 resources/prod_resources/Greenway_Health_LLC_EndpointSources.json create mode 100644 resources/prod_resources/Health_Care_Systems_Inc_EndpointSources.json create mode 100644 resources/prod_resources/InPracSys_EndpointSources.json create mode 100644 resources/prod_resources/MaxRemind_Inc_EndpointSources.json create mode 100644 resources/prod_resources/MedicaSoft_LLC_EndpointSources.json create mode 100644 resources/prod_resources/Tenzing_Medical_LLC_EndpointSources.json diff --git a/endpointmanager/pkg/chplendpointquerier/aidboxquerier.go b/endpointmanager/pkg/chplendpointquerier/aidboxquerier.go new file mode 100644 index 000000000..d27ec4e44 --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/aidboxquerier.go @@ -0,0 +1,42 @@ +package chplendpointquerier + +import ( + "encoding/json" + "fmt" + + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" +) + +func AidboxQuerierParser(aidboxURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + fmt.Println(aidboxURL) + respBody, err := helpers.QueryEndpointList(aidboxURL) + if err != nil { + log.Fatal(err) + } + var aidboxArr Bundle + err = json.Unmarshal(respBody, &aidboxArr) + if err != nil { + log.Fatal(err) + } + + for _, aidboxEntry := range aidboxArr.Entry { + var entry LanternEntry + + entry.URL = aidboxEntry.URL + entry.OrganizationName = aidboxEntry.Name + + lanternEntryList = append(lanternEntryList, entry) + } + + endpointEntryList.Endpoints = lanternEntryList + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go b/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go index dc5466667..97bf3ea85 100644 --- a/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go @@ -1,11 +1,11 @@ package chplendpointquerier import ( - "fmt" + "strings" + "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,6 @@ 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/chplendpointquerier.go b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go index 7b18e94fc..39dc8ab04 100644 --- a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go +++ b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go @@ -140,6 +140,19 @@ var officePracticumURL = "https://fhir-documentation.patientmedrecords.com/endpo 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" +var aidboxURL = "https://aidbox.cx360.net/service-base-urls" +var medicaURL = "https://code.medicasoft.us/fhir_r4_endpoints.html" +var dss2URL = "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints" +var dynamicfhirURL = "https://dynamicfhirpresentation.dynamicfhirsandbox.com/" +var cozevaURL = "https://fhir.cozeva.com/endpoints" +var fhirjunoURL = "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints" +var hcsincURL = "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api/Endpoint?connection-type=hl7-fhir-rest" +var greenwayURL = "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls" +var snfistURL = "https://fhir.thesnfist.com/endpointlist" +var criterionsURL = "https://criterions.com/fhir-end-points/" +var maximusURL = "https://documents.maximus.care" +var tenzingURL = "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints" +var inpracsysURL = "https://inpracsys.com/fhir/" func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { @@ -275,8 +288,16 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { CSVParser(chplURL, fileToWriteTo, "./ezdocs_fhir_base_urls.csv", 1, 0, true, 3, 1) } else if URLsEqual(chplURL, netsmarttechnologiesURL) { CSVParser(chplURL, fileToWriteTo, "./fhir_base_urls.csv", -1, 0, false, 1, 0) + } else if URLsEqual(chplURL, snfistURL) { + CSVParser(chplURL, fileToWriteTo, "./fhir_base_urls.csv", 2, 1, true, 1, 0) } else if URLsEqual(chplURL, athenaClinicalsURL) { CSVParser("https://fhir.athena.io/athena-fhir-urls/athenanet-fhir-base-urls.csv", fileToWriteTo, "./athenanet-fhir-base-urls.csv", 17136, 2, true, 3, 1) + } else if URLsEqual(chplURL, criterionsURL) { + CriterionsWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, tenzingURL) { + TenzingURLWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, inpracsysURL) { + InpracsysURLWebscraper(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, medicscloudURL) { MedicsCloudWebscraper(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, advancedmdURL) { @@ -377,6 +398,8 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { BundleQuerierParser(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, CarepathsURL) { BundleQuerierParser(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, greenwayURL) { + CSVParser("https://greenway-fhir-base-url-list20230524071017901000000001.s3.us-east-2.amazonaws.com/greenwayFhirBaseUrls.csv", fileToWriteTo, "./ServiceBaseURLs.csv", -1, 1, true, 3, 0) } else if URLsEqual(chplURL, mPNSoftwareURL) { CSVParser("https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", fileToWriteTo, "./ServiceBaseURLs.csv", 1, 0, true, 3, 2) } else if URLsEqual(chplURL, NexusURL) { @@ -385,12 +408,28 @@ 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, maximusURL) { + MaximusURLWebscraper(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, aidboxURL) { + AidboxQuerierParser(aidboxURL, fileToWriteTo) + } else if URLsEqual(chplURL, dss2URL) { + BundleQuerierParser(dss2URL, fileToWriteTo) + } else if URLsEqual(chplURL, cozevaURL) { + BundleQuerierParser("https://fhir.cozeva.com/r4Endpoints.json", fileToWriteTo) + } else if URLsEqual(chplURL, medicaURL) { + BundleQuerierParser("https://code.medicasoft.us/fhir_r4_endpoints.json", fileToWriteTo) + } else if URLsEqual(chplURL, hcsincURL) { + BundleQuerierParser(hcsincURL, fileToWriteTo) + } else if URLsEqual(chplURL, fhirjunoURL) { + BundleQuerierParser(fhirjunoURL, fileToWriteTo) + } else if URLsEqual(chplURL, dynamicfhirURL) { + BundleQuerierParser("https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/r4/endpoints", fileToWriteTo) } else if URLsEqual(chplURL, veradigmURL) { BundleQuerierParser("https://open.platform.veradigm.com/fhirendpoints/download/R4", fileToWriteTo) } diff --git a/endpointmanager/pkg/chplendpointquerier/criterionswebscraper.go b/endpointmanager/pkg/chplendpointquerier/criterionswebscraper.go new file mode 100644 index 000000000..58a623f7b --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/criterionswebscraper.go @@ -0,0 +1,45 @@ +package chplendpointquerier + +import ( + "strings" + + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" +) + +func CriterionsWebscraper(CHPLURL string, fileToWriteTo string) { + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, ".et_pb_text_inner") + if err != nil { + log.Fatal(err) + } + + doc.Find(".et_pb_text_inner").Each(func(index int, divhtml *goquery.Selection) { + divhtml.Find("h3").Each(func(indextr int, h3html *goquery.Selection) { + parts := strings.SplitN(h3html.Text(), "https://", 2) + organization := parts[0] + url := "https://" + parts[1] + + if strings.HasSuffix(organization, "-") { + organization = strings.TrimSuffix(organization, "-") + } + + var entry LanternEntry + + entry.URL = strings.TrimSpace(url) + entry.OrganizationName = strings.TrimSpace(organization) + lanternEntryList = append(lanternEntryList, entry) + }) + }) + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/csvparser.go b/endpointmanager/pkg/chplendpointquerier/csvparser.go index 93d6b22ea..5db80de15 100644 --- a/endpointmanager/pkg/chplendpointquerier/csvparser.go +++ b/endpointmanager/pkg/chplendpointquerier/csvparser.go @@ -33,7 +33,6 @@ func CSVParser(CHPLURL string, fileToWriteTo string, csvFilePath string, numreco if numrecords >= 0 && records >= numrecords+startrecord { break } - if records >= startrecord { var entry LanternEntry diff --git a/endpointmanager/pkg/chplendpointquerier/inpracsyswebscraper.go b/endpointmanager/pkg/chplendpointquerier/inpracsyswebscraper.go new file mode 100644 index 000000000..479fcee2b --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/inpracsyswebscraper.go @@ -0,0 +1,44 @@ +package chplendpointquerier + +import ( + "strings" + + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" +) + +func InpracsysURLWebscraper(CHPLURL string, fileToWriteTo string) { + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, ".elementor-element.elementor-element-832f39a.elementor-widget.elementor-widget-text-editor") + if err != nil { + log.Fatal(err) + } + + doc.Find(".elementor-element.elementor-element-832f39a.elementor-widget.elementor-widget-text-editor").Each(func(index int, mainhtml *goquery.Selection) { + mainhtml.Find("div").Each(func(indextr int, divhtml *goquery.Selection) { + mainhtml.Find("span").Each(func(indextr int, spanhtml *goquery.Selection) { + preElem := spanhtml.Find("pre").First() + parts := strings.SplitN(preElem.Text(), ".com", 2) + url := parts[0] + ".com" + + parts = strings.SplitN(url, "GET", 2) + + var entry LanternEntry + + entry.URL = strings.TrimSpace(parts[1]) + lanternEntryList = append(lanternEntryList, entry) + }) + }) + }) + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/maximuswebscraper.go b/endpointmanager/pkg/chplendpointquerier/maximuswebscraper.go new file mode 100644 index 000000000..f3a64f8e3 --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/maximuswebscraper.go @@ -0,0 +1,49 @@ +package chplendpointquerier + +import ( + "strings" + + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" +) + +func MaximusURLWebscraper(chplURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(chplURL, ".width50padd") + if err != nil { + log.Fatal(err) + } + + fhirEndpointsHeaderElem := doc.Find(".width50padd") + if fhirEndpointsHeaderElem.Length() > 0 { + fhirEndpointsHeaderElem.Find("ul").Each(func(index int, ulElems *goquery.Selection) { + ulElems.Find("li").Each(func(index int, liElems *goquery.Selection) { + if strings.Contains(liElems.Text(), "FHIR Base URL:") { + divElems := liElems.Find("div") + if divElems.Length() > 0 { + preElems := liElems.Find("pre") + if preElems.Length() > 0 { + var entry LanternEntry + + fhirURL := strings.TrimSpace(preElems.Text()) + entry.URL = fhirURL + lanternEntryList = append(lanternEntryList, entry) + } + } + } + }) + }) + } + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/tenzingwebscraper.go b/endpointmanager/pkg/chplendpointquerier/tenzingwebscraper.go index efb989ee4..a746dc619 100644 --- a/endpointmanager/pkg/chplendpointquerier/tenzingwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/tenzingwebscraper.go @@ -12,15 +12,15 @@ func TenzingURLWebscraper(chplURL string, fileToWriteTo string) { var lanternEntryList []LanternEntry var endpointEntryList EndpointList - doc, err := helpers.ChromedpQueryEndpointList(chplURL, "main") + + doc, err := helpers.ChromedpQueryEndpointList(chplURL, ".humanColumnApiDescription.markdown.formalTheme") if err != nil { log.Fatal(err) } - fhirEndpointsHeaderElem := doc.Find("#introduction/terms-and-conditions/fhir-endpoints") + fhirEndpointsHeaderElem := doc.Find(".humanColumnApiDescription.markdown.formalTheme") if fhirEndpointsHeaderElem.Length() > 0 { - spanElem := fhirEndpointsHeaderElem.Eq(0).Next() - spanElem.Find("ul").Each(func(index int, ulElems *goquery.Selection) { + fhirEndpointsHeaderElem.Find("ul").Each(func(index int, ulElems *goquery.Selection) { ulElems.Find("li").Each(func(index int, liElems *goquery.Selection) { liElems.Find("p").Each(func(index int, pElems *goquery.Selection) { if strings.HasPrefix(pElems.Text(), "FHIR ") { diff --git a/resources/dev_resources/Applied_Research_Works_Inc_EndpointSources.json b/resources/dev_resources/Applied_Research_Works_Inc_EndpointSources.json new file mode 100644 index 000000000..08da8e6ed --- /dev/null +++ b/resources/dev_resources/Applied_Research_Works_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.cozeva.com/4_0_0", + "OrganizationName": "Cozeva", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/CHPLEndpointResourcesList.json b/resources/dev_resources/CHPLEndpointResourcesList.json index e00bfd38f..7513ce817 100644 --- a/resources/dev_resources/CHPLEndpointResourcesList.json +++ b/resources/dev_resources/CHPLEndpointResourcesList.json @@ -121,7 +121,7 @@ }, { "FormatType": "Lantern", - "URL": "https://api.meldrx.com/Directories/fhir/endpoints", + "URL": "https://app.meldrx.com/api/Directories/fhir/endpoints", "EndpointName": "Darena Solutions LLC", "FileName": "Darena_Solutions_LLC_EndpointSources.json" }, @@ -553,13 +553,13 @@ }, { "FormatType": "Lantern", - "URL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", + "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", "EndpointName": "DSS, Inc.", "FileName": "DSS_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", + "URL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", "EndpointName": "DSS, Inc.", "FileName": "DSS_Inc_1_EndpointSources.json" }, @@ -917,6 +917,12 @@ "EndpointName": "Doc-tor.com", "FileName": "Doctorcom_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.pointclickcare.com/", + "EndpointName": "PointClickCare Technologies Inc.", + "FileName": "PointClickCare_Technologies_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://dataapi.practiceehr.com", @@ -949,7 +955,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", + "URL": "https://fhir.procentive.com/", "EndpointName": "Procentive", "FileName": "Procentive_EndpointSources.json" }, @@ -1199,6 +1205,12 @@ "EndpointName": "Zoobook Systems LLC", "FileName": "Zoobook_Systems_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.zoommd.com/zoommd-file-api-endpoints", + "EndpointName": "Metasolutions Inc", + "FileName": "Metasolutions_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", @@ -1279,7 +1291,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", + "URL": "https://fhir.10e11.com/", "EndpointName": "TenEleven Group", "FileName": "TenEleven_Group_EndpointSources.json" }, diff --git a/resources/dev_resources/CHPLProductsInfo.json b/resources/dev_resources/CHPLProductsInfo.json index 01cb3ef35..b7e9ad78b 100644 --- a/resources/dev_resources/CHPLProductsInfo.json +++ b/resources/dev_resources/CHPLProductsInfo.json @@ -32,64 +32,49 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 9, @@ -97,14 +82,19 @@ "title": "Clinical Decision Support" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -112,44 +102,44 @@ "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -157,9 +147,19 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -173,17 +173,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://apidocs.onemedical.io/fhir/overview/" }, { "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://apidocs.onemedical.io/fhir/overview/" } @@ -219,50 +219,35 @@ "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "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": 26, @@ -270,54 +255,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -325,34 +300,34 @@ "title": "Quality Management System" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -360,9 +335,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -370,35 +360,37 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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://apidocs.chirp.app" - }, { "criterion": { "id": 182, @@ -407,6 +399,14 @@ }, "value": "https://apidocs.chirp.app/" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apidocs.chirp.app" + }, { "criterion": { "id": 181, @@ -453,59 +453,44 @@ }, "criteriaMet": [ { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 182, @@ -513,49 +498,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, @@ -563,19 +538,19 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -583,24 +558,34 @@ "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 15, @@ -608,49 +593,64 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" } ], "apiDocumentation": [ @@ -664,17 +664,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://app.smartemr.com/api/api_client.php" }, { "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.smartemr.com/api/api_client.php" } @@ -716,59 +716,64 @@ }, "criteriaMet": [ { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -776,84 +781,84 @@ "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -861,29 +866,24 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -944,99 +944,99 @@ }, "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 56, @@ -1044,82 +1044,82 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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" } ], "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://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -1133,9 +1133,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://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -1177,39 +1177,34 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -1217,39 +1212,44 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -1257,49 +1257,39 @@ "title": "Safety-Enhanced Design" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -1307,14 +1297,19 @@ "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": 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" }, { "id": 56, @@ -1322,9 +1317,9 @@ "title": "Application Access - Patient Selection" }, { - "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, @@ -1332,29 +1327,34 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -1420,34 +1420,29 @@ }, "criteriaMet": [ { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -1455,59 +1450,64 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -1515,14 +1515,24 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -1530,9 +1540,9 @@ "title": "Quality Management System" }, { - "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, @@ -1540,29 +1550,19 @@ "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -1570,42 +1570,42 @@ "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "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://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" }, @@ -1619,9 +1619,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://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } @@ -1663,44 +1663,44 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -1708,29 +1708,24 @@ "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, @@ -1738,9 +1733,14 @@ "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -1748,14 +1748,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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 171, @@ -1763,24 +1758,19 @@ "title": "Electronic Health Information Export" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 39, @@ -1788,34 +1778,34 @@ "title": "Accounting of Disclosures" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 59, - "number": "170.315 (h)(1)", - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -1823,17 +1813,35 @@ "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": 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": 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://openapi.axeium.net" + }, { "criterion": { "id": 181, @@ -1849,14 +1857,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://axeium.net/api/swagger/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://openapi.axeium.net" } ], "acb": "SLI Compliance" @@ -1896,34 +1896,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -1931,64 +1931,64 @@ "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, @@ -2001,19 +2001,14 @@ "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 34, @@ -2021,29 +2016,29 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 59, @@ -2051,60 +2046,57 @@ "title": "Direct Project" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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": 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": "https://developer.advancedmd.com/fhir/apis" - }, { "criterion": { "id": 182, @@ -2120,6 +2112,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -2154,9 +2154,14 @@ }, "criteriaMet": [ { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 166, @@ -2164,29 +2169,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 1, @@ -2194,14 +2194,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -2209,19 +2219,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, @@ -2229,44 +2239,24 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -2274,9 +2264,9 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -2284,54 +2274,54 @@ "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" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -2339,19 +2329,29 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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" } ], "apiDocumentation": [ @@ -2365,17 +2365,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://developer.advancedmd.com/fhir/apis" }, { "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" } @@ -2417,44 +2417,34 @@ }, "criteriaMet": [ { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 51, + "number": "170.315 (g)(2)", + "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": 172, @@ -2462,34 +2452,19 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 44, @@ -2497,14 +2472,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -2517,74 +2492,74 @@ "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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 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": 32, @@ -2592,14 +2567,14 @@ "title": "Amendments" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -2607,22 +2582,55 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": "http://agastha.com/apiR4.html" + }, { "criterion": { "id": 182, @@ -2638,14 +2646,6 @@ "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" @@ -2684,76 +2684,68 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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, @@ -2769,6 +2761,14 @@ "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" @@ -2818,25 +2818,25 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 53, "number": "170.315 (g)(4)", @@ -2894,20 +2894,45 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 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": 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": 25, @@ -2920,9 +2945,9 @@ "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": 29, @@ -2930,9 +2955,14 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -2940,74 +2970,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 51, "number": "170.315 (g)(2)", "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": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 37, @@ -3015,24 +3000,14 @@ "title": "Trusted Connection" }, { - "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, - "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": 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": 176, @@ -3040,49 +3015,74 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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" } ], "apiDocumentation": [ @@ -3096,17 +3096,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://www.mdsynergy.com/AltheaAPIDocumentation.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://www.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3148,89 +3148,69 @@ }, "criteriaMet": [ { - "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 43, @@ -3238,19 +3218,24 @@ "title": "Transmission to Immunization 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 181, @@ -3258,74 +3243,89 @@ "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "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": 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" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -3339,17 +3339,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://harrisambulatory.com/ac-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://harrisambulatory.com/ac-api-documentation/" } @@ -3386,64 +3386,84 @@ }, "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": 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": 37, - "number": "170.315 (d)(9)", - "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": 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": 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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "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": 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": 51, @@ -3451,24 +3471,14 @@ "title": "Automated Measure Calculation" }, { - "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, - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 52, @@ -3476,34 +3486,29 @@ "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 32, @@ -3511,34 +3516,24 @@ "title": "Amendments" }, { - "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -3546,37 +3541,42 @@ "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": 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, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "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://harrisambulatory.com/ac-api-documentation/" }, @@ -3590,9 +3590,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://harrisambulatory.com/ac-api-documentation/" } @@ -3629,54 +3629,59 @@ }, "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": 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" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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, @@ -3684,14 +3689,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -3699,59 +3704,59 @@ "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -3759,9 +3764,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": 166, @@ -3769,19 +3774,19 @@ "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -3789,32 +3794,35 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 181, @@ -3830,14 +3838,6 @@ "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" @@ -3877,24 +3877,44 @@ }, "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -3902,14 +3922,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 3, @@ -3917,19 +3947,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -3937,24 +3967,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 42, @@ -3962,9 +3992,9 @@ "title": "Patient Health Information Capture" }, { - "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": 5, @@ -3972,39 +4002,14 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -4012,39 +4017,34 @@ "title": "Automatic Access Time-out" }, { - "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" }, { - "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": 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" } ], "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://astronautehr.com/index.php/170-315g10-apis/" + "value": "https://astronautehr.com/index.php/disclosures/" }, { "criterion": { @@ -4056,11 +4056,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://astronautehr.com/index.php/disclosures/" + "value": "https://astronautehr.com/index.php/170-315g10-apis/" } ], "acb": "SLI Compliance" @@ -4100,89 +4100,94 @@ }, "criteriaMet": [ { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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, @@ -4195,90 +4200,77 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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" } ], "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": 56, @@ -4294,6 +4286,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pai.healthcare/documentation" } ], "acb": "Drummond Group" @@ -4333,49 +4333,9 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 39, @@ -4383,9 +4343,9 @@ "title": "Accounting of Disclosures" }, { - "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": 3, @@ -4393,14 +4353,9 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -4408,19 +4363,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 13, @@ -4428,49 +4378,84 @@ "title": "Patient-Specific Education Resources" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "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": 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, + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, @@ -4478,40 +4463,47 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "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": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://hmsfirst.com/apidocs/" - }, { "criterion": { "id": 181, @@ -4520,6 +4512,14 @@ }, "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/" + }, { "criterion": { "id": 182, @@ -4566,34 +4566,19 @@ }, "criteriaMet": [ { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 37, @@ -4601,19 +4586,9 @@ "title": "Trusted Connection" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -4621,14 +4596,14 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 59, @@ -4636,74 +4611,74 @@ "title": "Direct Project" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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, @@ -4711,49 +4686,49 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -4761,35 +4736,52 @@ "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": 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": 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://dev.azaleahealth.com/" + "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": 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": [ { "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/" }, @@ -4800,6 +4792,14 @@ "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" @@ -4839,24 +4839,24 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 165, @@ -4864,14 +4864,9 @@ "title": "Transitions of Care" }, { - "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": 6, @@ -4879,9 +4874,14 @@ "title": "Problem 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -4889,69 +4889,69 @@ "title": "Safety-Enhanced 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": 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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 49, @@ -4959,39 +4959,29 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 53, @@ -4999,24 +4989,19 @@ "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 48, @@ -5024,9 +5009,14 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -5034,47 +5024,65 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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://portal.ezcaretech.com:30112/applicationAccessApi" + }, { "criterion": { "id": 181, @@ -5090,14 +5098,6 @@ "title": "Application Access - Patient Selection" }, "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" } ], "acb": "Drummond Group" @@ -5137,44 +5137,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 51, @@ -5182,14 +5162,9 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -5197,24 +5172,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 173, @@ -5222,19 +5197,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 37, @@ -5242,14 +5207,19 @@ "title": "Trusted Connection" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 180, @@ -5257,39 +5227,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, { "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 49, @@ -5297,9 +5277,9 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 25, @@ -5307,14 +5287,9 @@ "title": "Clinical Quality Measures - Record and 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, @@ -5327,39 +5302,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 41, @@ -5367,14 +5352,9 @@ "title": "Secure Messaging" }, { - "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" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 168, @@ -5382,35 +5362,47 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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" } ], "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, @@ -5426,6 +5418,14 @@ "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,94 +5465,89 @@ }, "criteriaMet": [ { - "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": 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": 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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, @@ -5560,9 +5555,9 @@ "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": 41, @@ -5570,114 +5565,89 @@ "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, { "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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" }, { "id": 11, @@ -5685,19 +5655,14 @@ "title": "Smoking Status" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 49, @@ -5705,19 +5670,19 @@ "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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -5725,20 +5690,47 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "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, @@ -5747,6 +5739,14 @@ }, "value": "http://prognocis.com/ehr-interoperability/" }, + { + "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": 181, @@ -5788,34 +5788,9 @@ }, "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -5823,124 +5798,134 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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, @@ -5948,59 +5933,74 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 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" } ], "apiDocumentation": [ @@ -6014,17 +6014,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://prognocis.com/fhir/FHIRAPIDocuments.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://prognocis.com/fhir/FHIRAPIDocuments.html" } @@ -6066,44 +6066,49 @@ "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -6111,159 +6116,154 @@ "title": "Audit Report(s)" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -6271,9 +6271,9 @@ "title": "Direct Project" }, { - "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" } ], "apiDocumentation": [ @@ -6339,14 +6339,14 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 165, @@ -6354,59 +6354,49 @@ "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -6414,14 +6404,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 36, @@ -6429,14 +6419,9 @@ "title": "Integrity" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -6444,24 +6429,14 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -6474,14 +6449,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -6489,30 +6464,47 @@ "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": 181, + "number": "170.315 (g)(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": 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" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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://betterdayhealth.net/OpenApiTestClient/Home/Documentation" - }, { "criterion": { "id": 56, @@ -6528,6 +6520,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" } ], "acb": "Drummond Group" @@ -6535,7 +6535,7 @@ ] }, { - "listSourceURL": "https://api.meldrx.com/Directories/fhir/endpoints", + "listSourceURL": "https://app.meldrx.com/api/Directories/fhir/endpoints", "softwareProducts": [ { "id": 10435, @@ -6567,20 +6567,35 @@ }, "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": 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": 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": 177, "number": "170.315 (d)(13)", @@ -6592,44 +6607,29 @@ "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" - }, - { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" } ], "apiDocumentation": [ @@ -6687,44 +6687,49 @@ }, "criteriaMet": [ { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -6732,19 +6737,9 @@ "title": "Transmission to Immunization Registries" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -6752,39 +6747,29 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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, @@ -6797,44 +6782,44 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -6842,35 +6827,42 @@ "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": 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": 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": 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": 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://blueehr.com/certifications-and-costs/" - }, { "criterion": { "id": 181, @@ -6879,6 +6871,14 @@ }, "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, @@ -6924,31 +6924,26 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "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": 174, "number": "170.315 (d)(3)", @@ -6960,29 +6955,29 @@ "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": 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" + }, { "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -6990,9 +6985,14 @@ "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": 29, @@ -7000,29 +7000,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" } ], "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://bridgepatientportal.docs.apiary.io/" + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" }, { "criterion": { @@ -7034,11 +7034,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://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" + "value": "https://bridgepatientportal.docs.apiary.io/" } ], "acb": "SLI Compliance" @@ -7078,29 +7078,29 @@ }, "criteriaMet": [ { - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 172, @@ -7108,44 +7108,44 @@ "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -7153,24 +7153,24 @@ "title": "Direct Project" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 32, @@ -7178,34 +7178,34 @@ "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -7213,9 +7213,14 @@ "title": "Emergency Access" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -7223,44 +7228,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 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": 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)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -7274,17 +7274,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://broadstreetcare.com/docs" }, { "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://broadstreetcare.com/docs" } @@ -7326,89 +7326,99 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 165, @@ -7416,64 +7426,59 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, @@ -7481,54 +7486,54 @@ "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 14, - "number": "170.315 (a)(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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -7536,40 +7541,27 @@ "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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" } ], "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": 181, @@ -7585,6 +7577,14 @@ "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" @@ -7619,49 +7619,59 @@ }, "criteriaMet": [ { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 44, @@ -7669,29 +7679,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 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": 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": 37, @@ -7699,9 +7709,19 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -7709,39 +7729,34 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 52, @@ -7754,115 +7769,92 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "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": 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": 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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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://ehealthline.com/dev/pdf/API_TermsOfUse.htm" - }, { "criterion": { "id": 56, @@ -7878,6 +7870,14 @@ "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" @@ -7916,70 +7916,85 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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, + "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": 51, @@ -7987,14 +8002,19 @@ "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 25, @@ -8002,79 +8022,74 @@ "title": "Clinical Quality Measures - Record and 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, @@ -8082,49 +8097,34 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -8134,7 +8134,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://emds.com/certifications/" }, { "criterion": { @@ -8142,7 +8142,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://emds.com/certifications/" }, { "criterion": { @@ -8150,7 +8150,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://emds.com/certifications/" } ], "acb": "Drummond Group" @@ -8185,29 +8185,24 @@ }, "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -8215,89 +8210,104 @@ "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 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": 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": 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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -8305,44 +8315,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 56, + "number": "170.315 (g)(7)", + "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": 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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, @@ -8350,35 +8360,25 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://apitest.emds.com/documentation" }, @@ -8432,78 +8432,86 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "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": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "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": 33, - "number": "170.315 (d)(5)", - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, { "criterion": { "id": 182, @@ -8519,14 +8527,6 @@ "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" } ], "acb": "Drummond Group" @@ -8566,29 +8566,34 @@ }, "criteriaMet": [ { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 36, @@ -8596,29 +8601,39 @@ "title": "Integrity" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 33, @@ -8626,64 +8641,49 @@ "title": "Automatic Access Time-out" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, @@ -8691,69 +8691,69 @@ "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -8767,17 +8767,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://docs.canvasmedical.com/api/" }, { "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/" } @@ -8819,24 +8819,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -8844,19 +8844,24 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -8864,124 +8869,119 @@ "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -8989,14 +8989,19 @@ "title": "Accessibility-Centered 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -9004,39 +9009,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 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://www.acurussolutions.com/Certification.html" + "value": "http://www.acurussolutions.com/Certification.html" }, { "criterion": { @@ -9048,11 +9048,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": "http://www.acurussolutions.com/Certification.html" + "value": "https://www.acurussolutions.com/Certification.html" } ], "acb": "SLI Compliance" @@ -9092,14 +9092,19 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, @@ -9107,139 +9112,134 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 176, @@ -9247,9 +9247,29 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 9, @@ -9265,26 +9285,6 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -9345,39 +9345,14 @@ }, "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -9385,34 +9360,44 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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" }, + { + "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": 14, "number": "170.315 (a)(14)", "title": "Implantable Device 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -9420,49 +9405,49 @@ "title": "CPOE - Laboratory" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 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": 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": 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, @@ -9470,9 +9455,9 @@ "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": 177, @@ -9480,24 +9465,44 @@ "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": 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": 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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "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, @@ -9505,42 +9510,37 @@ "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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" } ], "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://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, @@ -9554,9 +9554,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://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" } @@ -9593,64 +9593,64 @@ }, "criteriaMet": [ { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -9658,74 +9658,59 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 28, @@ -9733,9 +9718,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -9743,19 +9728,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 32, @@ -9763,14 +9743,14 @@ "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -9778,59 +9758,79 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -9844,17 +9844,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/" } @@ -9896,29 +9896,9 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 37, @@ -9926,39 +9906,39 @@ "title": "Trusted Connection" }, { - "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -9966,29 +9946,29 @@ "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": 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" + "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": 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": 42, @@ -9996,19 +9976,39 @@ "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 25, @@ -10016,95 +10016,95 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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" } ], "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://qualifacts.com/api-documentation/" }, { "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://qualifacts.com/api-documentation/" }, @@ -10154,54 +10154,49 @@ }, "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 29, + "number": "170.315 (d)(1)", + "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": 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": 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": 176, @@ -10209,19 +10204,14 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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, @@ -10229,34 +10219,29 @@ "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 25, @@ -10264,9 +10249,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 165, @@ -10274,9 +10279,14 @@ "title": "Transitions of Care" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, @@ -10287,16 +10297,6 @@ "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" } ], "apiDocumentation": [ @@ -10362,72 +10362,72 @@ }, "criteriaMet": [ { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 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": 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": 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": 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": 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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "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://api.carefluence.com" }, @@ -10441,9 +10441,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://api.carefluence.com" } @@ -10484,30 +10484,30 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 4, @@ -10515,19 +10515,19 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -10535,54 +10535,54 @@ "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 176, @@ -10590,14 +10590,14 @@ "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": 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": 53, @@ -10605,24 +10605,24 @@ "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" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 11, @@ -10630,100 +10630,92 @@ "title": "Smoking Status" }, { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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://www.charmhealth.com/resources/fhir/index.html" - }, { "criterion": { "id": 56, @@ -10739,6 +10731,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -10777,6 +10777,36 @@ "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 48, "number": "170.315 (f)(6)", @@ -10788,29 +10818,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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, + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 171, @@ -10823,49 +10858,34 @@ "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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -10873,24 +10893,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -10898,24 +10913,24 @@ "title": "Trusted Connection" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 5, @@ -10923,77 +10938,62 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 54, + "number": "170.315 (g)(5)", + "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)" }, { - "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": 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": 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": 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://dev.azaleahealth.com/" }, @@ -11007,9 +11007,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://dev.azaleahealth.com/" } @@ -11050,50 +11050,15 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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" - }, { "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 10, @@ -11101,74 +11066,59 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 59, @@ -11181,57 +11131,107 @@ "title": "Amendments" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 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" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.charteasy.com/" }, @@ -11245,9 +11245,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.charteasy.com/" } @@ -11288,35 +11288,30 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 5, @@ -11324,9 +11319,24 @@ "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -11334,19 +11344,19 @@ "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 54, @@ -11354,9 +11364,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 173, @@ -11364,24 +11384,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 39, @@ -11389,19 +11414,14 @@ "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -11409,29 +11429,14 @@ "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": 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" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 179, @@ -11439,19 +11444,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -11459,52 +11459,60 @@ "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, { "criterion": { "id": 56, @@ -11520,14 +11528,6 @@ "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,69 +11567,69 @@ }, "criteriaMet": [ { - "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": 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": 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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 14, @@ -11637,89 +11637,49 @@ "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 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, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 174, @@ -11727,60 +11687,92 @@ "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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://beta.afoundria.com/api" - }, { "criterion": { "id": 182, @@ -11796,6 +11788,14 @@ "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,49 +11835,44 @@ }, "criteriaMet": [ { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -11885,109 +11880,109 @@ "title": "End-User Device Encryption" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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, - "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": 52, + "number": "170.315 (g)(3)", + "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": 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, + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 37, @@ -11995,34 +11990,39 @@ "title": "Trusted Connection" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 172, @@ -12033,9 +12033,9 @@ "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.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" }, @@ -12049,9 +12049,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.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" } @@ -12093,139 +12093,134 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 59, + "number": "170.315 (h)(1)", + "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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, @@ -12233,34 +12228,34 @@ "title": "Implantable Device List" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, @@ -12268,29 +12263,34 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -12355,50 +12355,30 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 166, @@ -12406,39 +12386,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 44, @@ -12446,49 +12436,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 178, @@ -12496,54 +12481,54 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 52, @@ -12551,9 +12536,24 @@ "title": "Safety-Enhanced Design" }, { - "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": 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, @@ -12561,34 +12561,34 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "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://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" }, { "criterion": { @@ -12600,11 +12600,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://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" + "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" @@ -12644,54 +12644,44 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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" }, { - "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": 34, @@ -12699,64 +12689,59 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 3, @@ -12764,44 +12749,54 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -12809,9 +12804,14 @@ "title": "Multi-Factor Authentication" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 42, @@ -12819,19 +12819,19 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 52, @@ -12839,34 +12839,29 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 181, @@ -12874,19 +12869,24 @@ "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "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.goldblattsystems.com/apis/" + "value": "https://www.goldblattsystems.com/apis" }, { "criterion": { @@ -12898,11 +12898,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://www.goldblattsystems.com/apis" + "value": "https://www.goldblattsystems.com/apis/" } ], "acb": "SLI Compliance" @@ -12942,69 +12942,64 @@ }, "criteriaMet": [ { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -13017,24 +13012,19 @@ "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": 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": 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": 37, @@ -13042,29 +13032,39 @@ "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" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, @@ -13072,54 +13072,54 @@ "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 181, @@ -13127,27 +13127,27 @@ "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" }, @@ -13161,9 +13161,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://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" } @@ -13205,9 +13205,9 @@ }, "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": 37, @@ -13215,14 +13215,19 @@ "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": 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, @@ -13230,49 +13235,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -13280,9 +13265,9 @@ "title": "Amendments" }, { - "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": 34, @@ -13295,9 +13280,9 @@ "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -13305,14 +13290,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -13370,39 +13370,59 @@ }, "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": 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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -13410,29 +13430,34 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -13440,19 +13465,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -13460,19 +13485,19 @@ "title": "Clinical Decision Support" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, @@ -13480,49 +13505,34 @@ "title": "Demographics" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 3, @@ -13530,40 +13540,22 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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": 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": 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://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" - }, { "criterion": { "id": 182, @@ -13579,6 +13571,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -13618,14 +13618,14 @@ }, "criteriaMet": [ { - "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": 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": 37, @@ -13633,29 +13633,14 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 13, @@ -13663,19 +13648,24 @@ "title": "Patient-Specific Education Resources" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, @@ -13683,14 +13673,24 @@ "title": "Quality Management System" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -13698,79 +13698,79 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -13784,17 +13784,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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" } @@ -13836,54 +13836,69 @@ }, "criteriaMet": [ { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 59, @@ -13891,104 +13906,89 @@ "title": "Direct Project" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" }, - { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.dynamichealthit.com/dynamic-fhir-api" - }, { "criterion": { "id": 56, @@ -14015,6 +14007,14 @@ "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" @@ -14053,16 +14053,6 @@ "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)", @@ -14074,9 +14064,9 @@ "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": 182, @@ -14084,9 +14074,19 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 33, @@ -14099,14 +14099,14 @@ "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -14114,30 +14114,30 @@ "title": "Quality Management System" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - } + "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://fhir.developers.cozeva.com/" }, { "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.developers.cozeva.com/" }, @@ -14187,54 +14187,49 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 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": 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, @@ -14242,84 +14237,69 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 28, @@ -14327,24 +14307,14 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -14361,15 +14331,40 @@ "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": 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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "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": 2, @@ -14377,19 +14372,24 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 167, @@ -14405,17 +14405,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://www.qualifacts.com/api-documentation/" }, { "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.qualifacts.com/api-documentation/" }, @@ -14464,55 +14464,25 @@ "name": "Active" }, "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 177, @@ -14520,69 +14490,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "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": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 37, @@ -14590,54 +14550,49 @@ "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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": 167, - "number": "170.315 (b)(3)", - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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, + "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": 9, @@ -14649,31 +14604,68 @@ "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://criterions.com/documentation/" - }, { "criterion": { "id": 182, @@ -14689,6 +14681,14 @@ "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" @@ -14727,100 +14727,100 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 177, - "number": "170.315 (d)(13)", - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 182, @@ -14828,59 +14828,64 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 165, @@ -14888,45 +14893,40 @@ "title": "Transitions of Care" }, { - "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, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" }, { "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.crystalpm.com/APIDocumentation.pdf" }, @@ -14976,69 +14976,54 @@ }, "criteriaMet": [ { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -15046,19 +15031,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -15066,29 +15056,34 @@ "title": "Clinical Decision Support" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, @@ -15101,14 +15096,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 49, @@ -15116,29 +15111,34 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -15146,57 +15146,57 @@ "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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.curemd.com/developer/fhir-apis.pdf" }, @@ -15210,9 +15210,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.curemd.com/developer/fhir-apis.pdf" } @@ -15254,34 +15254,24 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 52, @@ -15289,19 +15279,19 @@ "title": "Safety-Enhanced 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -15309,69 +15299,59 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -15379,19 +15359,24 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 26, @@ -15399,64 +15384,44 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device 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": 51, @@ -15464,9 +15429,24 @@ "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 8, @@ -15474,45 +15454,57 @@ "title": "Medication Allergy List" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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://www.curemd.com/developer/curemdapiguide.pdf" - }, { "criterion": { "id": 182, @@ -15521,6 +15513,14 @@ }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + }, { "criterion": { "id": 56, @@ -15567,14 +15567,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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, @@ -15582,14 +15577,9 @@ "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -15597,14 +15587,19 @@ "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": 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": 56, @@ -15612,29 +15607,39 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -15642,24 +15647,19 @@ "title": "Transitions of Care" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -15667,97 +15667,97 @@ "title": "Electronic Health Information Export" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "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": 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" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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" } ], "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.coresolutionsinc.com/web-service-api-documentation/" }, @@ -15771,9 +15771,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.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,49 +15815,19 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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)" - }, - { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 11, @@ -15865,9 +15835,9 @@ "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 7, @@ -15875,29 +15845,24 @@ "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 36, @@ -15905,24 +15870,64 @@ "title": "Integrity" }, { - "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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -15930,9 +15935,9 @@ "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": 167, @@ -15940,49 +15945,49 @@ "title": "Electronic Prescribing" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 37, @@ -15990,39 +15995,39 @@ "title": "Trusted Connection" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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" }, { - "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 52, @@ -16030,29 +16035,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -16118,14 +16118,19 @@ }, "criteriaMet": [ { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 2, @@ -16133,39 +16138,24 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 32, @@ -16173,24 +16163,19 @@ "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 172, @@ -16198,44 +16183,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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, @@ -16243,14 +16218,14 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 54, @@ -16258,14 +16233,19 @@ "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -16273,30 +16253,42 @@ "title": "Direct Project" }, { - "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" - }, { "criterion": { "id": 182, @@ -16305,6 +16297,14 @@ }, "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" + }, { "criterion": { "id": 181, @@ -16351,89 +16351,94 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 59, @@ -16441,14 +16446,9 @@ "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 28, @@ -16456,49 +16456,54 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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, @@ -16506,34 +16511,34 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -16541,39 +16546,34 @@ "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "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": 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": 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": 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, @@ -16581,17 +16581,17 @@ "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" } ], "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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16605,9 +16605,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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -16644,69 +16644,69 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -16714,74 +16714,74 @@ "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 35, @@ -16789,9 +16789,9 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 5, @@ -16799,29 +16799,29 @@ "title": "Demographics" }, { - "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" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 168, @@ -16829,65 +16829,65 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "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://digidms.com/documents/DigiDMS_EHR_API_Access.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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16932,54 +16932,54 @@ }, "criteriaMet": [ { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 43, @@ -16987,24 +16987,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, @@ -17012,84 +17012,84 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, @@ -17097,14 +17097,9 @@ "title": "Transitions of Care" }, { - "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": 9, @@ -17112,39 +17107,44 @@ "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 167, @@ -17152,19 +17152,19 @@ "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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" } ], "apiDocumentation": [ @@ -17230,54 +17230,49 @@ }, "criteriaMet": [ { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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" }, { - "id": 9, - "number": "170.315 (a)(9)", - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 44, @@ -17285,54 +17280,64 @@ "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -17340,9 +17345,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -17350,29 +17360,29 @@ "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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, @@ -17380,64 +17390,54 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 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": 29, - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -17449,14 +17449,6 @@ }, "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, @@ -17464,6 +17456,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://drcloudehr.com/drcloudehr-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" } ], "acb": "SLI Compliance" @@ -17503,14 +17503,9 @@ }, "criteriaMet": [ { - "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": 43, @@ -17518,19 +17513,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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, @@ -17538,49 +17538,39 @@ "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -17588,19 +17578,19 @@ "title": "Integrity" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -17608,24 +17598,14 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 44, @@ -17633,24 +17613,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 51, @@ -17658,40 +17633,65 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "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" } ], "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://drsdoc.com/FHIRapi" }, { "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" }, @@ -17741,64 +17741,64 @@ }, "criteriaMet": [ { - "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": 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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 1, @@ -17806,30 +17806,60 @@ "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 180, "number": "170.315 (g)(6)", @@ -17841,9 +17871,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 43, @@ -17851,44 +17886,24 @@ "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 53, @@ -17896,24 +17911,14 @@ "title": "Quality Management System" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -17921,14 +17926,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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 5, @@ -17939,17 +17939,17 @@ "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://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/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": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, @@ -17998,35 +17998,60 @@ "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" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -18034,39 +18059,54 @@ "title": "Amendments" }, { - "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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -18079,34 +18119,29 @@ "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, @@ -18114,24 +18149,19 @@ "title": "Accounting of Disclosures" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 33, @@ -18139,39 +18169,9 @@ "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": 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" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -18185,17 +18185,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://openapi.ehnote.com/" }, { "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://openapi.ehnote.com/" } @@ -18237,14 +18237,14 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 29, @@ -18252,29 +18252,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -18282,14 +18317,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -18297,9 +18342,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -18311,60 +18366,20 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -18372,52 +18387,37 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18431,9 +18431,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://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } @@ -18469,55 +18469,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 52, @@ -18525,24 +18510,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, @@ -18550,24 +18540,19 @@ "title": "Multi-Factor Authentication" }, { - "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, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -18575,34 +18560,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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" + "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, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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, @@ -18610,9 +18590,9 @@ "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": 54, @@ -18620,9 +18600,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -18630,19 +18615,34 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -18656,17 +18656,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://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" + "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,74 @@ }, "criteriaMet": [ { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 43, @@ -18788,44 +18783,44 @@ "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" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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, @@ -18833,9 +18828,14 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 26, @@ -18843,34 +18843,39 @@ "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" }, { - "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": 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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -18878,49 +18883,44 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -18986,29 +18986,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -19016,39 +19016,39 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, @@ -19056,54 +19056,54 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -19111,67 +19111,67 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" } ], "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.modmed.com/public-api-v2/" }, @@ -19185,9 +19185,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.modmed.com/public-api-v2/" } @@ -19224,24 +19224,29 @@ }, "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": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 56, @@ -19249,29 +19254,14 @@ "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": 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": 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, @@ -19279,54 +19269,49 @@ "title": "Application Access - All Data Request" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 172, @@ -19334,9 +19319,24 @@ "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": 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": 167, @@ -19344,29 +19344,39 @@ "title": "Electronic Prescribing" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 173, - "number": "170.315 (d)(2)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 59, @@ -19374,24 +19384,19 @@ "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -19399,35 +19404,35 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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://exscribemobile.com/MU/EhrApiV01/" + "value": "https://exscribe-prod-fhir.ema-api.com/modmed/root/r4/Home/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://exscribemobile.com/MU/EhrApiV01/" }, @@ -19472,9 +19477,14 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 165, @@ -19482,24 +19492,19 @@ "title": "Transitions of Care" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -19507,54 +19512,34 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 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": 171, @@ -19562,64 +19547,64 @@ "title": "Electronic Health Information Export" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -19627,9 +19612,9 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 25, @@ -19637,35 +19622,55 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "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": 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": 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" } ], "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/" }, @@ -19710,69 +19715,54 @@ }, "criteriaMet": [ { - "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": 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": 52, + "number": "170.315 (g)(3)", + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "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": 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": 2, @@ -19780,9 +19770,9 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -19790,69 +19780,69 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 26, @@ -19860,19 +19850,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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, @@ -19880,37 +19865,57 @@ "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": 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" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19924,9 +19929,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.modmed.com/public-api-v2/" } @@ -19968,44 +19973,64 @@ }, "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "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": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "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": 53, @@ -20013,14 +20038,19 @@ "title": "Quality Management System" }, { - "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": 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, @@ -20028,59 +20058,29 @@ "title": "Audit Report(s)" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -20088,27 +20088,32 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, @@ -20122,9 +20127,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": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" } @@ -20166,24 +20171,9 @@ }, "criteriaMet": [ { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, @@ -20191,44 +20181,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 12, @@ -20236,54 +20231,69 @@ "title": "Family Health History" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 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, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 167, @@ -20291,29 +20301,29 @@ "title": "Electronic Prescribing" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 170, @@ -20321,14 +20331,19 @@ "title": "Care Plan" }, { - "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": 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": 4, @@ -20336,14 +20351,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -20351,14 +20361,9 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -20429,19 +20434,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "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": 36, @@ -20449,34 +20444,19 @@ "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -20484,14 +20464,9 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 2, @@ -20499,19 +20474,9 @@ "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 39, @@ -20519,74 +20484,74 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -20594,14 +20559,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -20609,9 +20594,29 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, @@ -20620,14 +20625,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.enablemyhealth.com" - }, { "criterion": { "id": 181, @@ -20643,6 +20640,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://apitest.enablemyhealth.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.enablemyhealth.com" } ], "acb": "SLI Compliance" @@ -20682,14 +20687,14 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -20697,244 +20702,244 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 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": 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": 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, + "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -20946,14 +20951,6 @@ }, "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, @@ -20961,6 +20958,14 @@ "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" + }, + "value": "https://www.endosoft.com/fhir" } ], "acb": "SLI Compliance" @@ -21000,99 +21005,89 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 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": 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" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -21100,59 +21095,64 @@ "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" }, { - "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" + "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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -21160,34 +21160,39 @@ "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -21248,9 +21253,14 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -21258,24 +21268,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -21283,29 +21278,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -21313,34 +21303,24 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -21348,49 +21328,49 @@ "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, @@ -21398,24 +21378,19 @@ "title": "Family Health History" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 21, @@ -21423,30 +21398,52 @@ "title": "Data Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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" } ], "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": 181, @@ -21462,6 +21459,14 @@ "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" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -21495,30 +21500,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -21531,29 +21521,24 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 1, @@ -21561,44 +21546,29 @@ "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -21606,24 +21576,44 @@ "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" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, @@ -21631,59 +21621,74 @@ "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -21744,44 +21749,39 @@ }, "criteriaMet": [ { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 172, @@ -21789,19 +21789,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 2, @@ -21809,14 +21814,9 @@ "title": "CPOE - Laboratory" }, { - "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": 171, @@ -21824,29 +21824,49 @@ "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": 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": 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": 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": 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": 59, @@ -21854,59 +21874,49 @@ "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -21914,24 +21924,19 @@ "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -21945,17 +21950,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" } @@ -21992,114 +21997,74 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "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, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 166, @@ -22107,14 +22072,9 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, @@ -22122,90 +22082,135 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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": 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" }, @@ -22250,44 +22255,9 @@ }, "criteriaMet": [ { - "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, - "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": 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": 14, @@ -22295,24 +22265,24 @@ "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -22320,49 +22290,69 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 53, @@ -22370,19 +22360,29 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 177, @@ -22390,9 +22390,14 @@ "title": "Multi-Factor Authentication" }, { - "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": 5, @@ -22400,47 +22405,55 @@ "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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" } ], "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, @@ -22456,14 +22469,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" @@ -22497,85 +22502,65 @@ "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" }, - { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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, @@ -22583,59 +22568,59 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 2, @@ -22643,19 +22628,29 @@ "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 172, @@ -22663,32 +22658,50 @@ "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 181, @@ -22704,14 +22717,6 @@ "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://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -22746,44 +22751,24 @@ }, "criteriaMet": [ { - "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": 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" + "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": 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": 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": 9, @@ -22791,24 +22776,24 @@ "title": "Clinical Decision Support" }, { - "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": 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": 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": 56, @@ -22816,124 +22801,144 @@ "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, { "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -22994,14 +22999,19 @@ }, "criteriaMet": [ { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -23009,69 +23019,109 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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, @@ -23079,9 +23129,9 @@ "title": "Application Access - All Data Request" }, { - "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": 35, @@ -23089,9 +23139,9 @@ "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": 171, @@ -23104,84 +23154,39 @@ "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" } ], "apiDocumentation": [ @@ -23195,17 +23200,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://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" } @@ -23242,44 +23247,34 @@ }, "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 54, @@ -23287,9 +23282,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 53, @@ -23302,29 +23297,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, @@ -23332,74 +23327,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 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" }, { "id": 178, @@ -23407,19 +23407,24 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 34, @@ -23427,12 +23432,20 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 181, @@ -23448,14 +23461,6 @@ "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" - }, - "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -23490,9 +23495,14 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 166, @@ -23500,49 +23510,59 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 59, @@ -23550,79 +23570,79 @@ "title": "Direct Project" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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" }, { - "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" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, @@ -23630,65 +23650,42 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, { "criterion": { "id": 182, @@ -23704,6 +23701,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -23738,9 +23743,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -23748,59 +23753,64 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 29, @@ -23808,124 +23818,119 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "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" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -23939,17 +23944,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://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" } @@ -23985,15 +23990,20 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -24001,34 +24011,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 35, @@ -24036,14 +24036,19 @@ "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" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 51, @@ -24051,44 +24056,34 @@ "title": "Automated Measure Calculation" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 5, @@ -24096,64 +24091,69 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, @@ -24161,19 +24161,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -24187,17 +24192,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" } @@ -24239,19 +24244,14 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, @@ -24259,24 +24259,19 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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, @@ -24284,69 +24279,59 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 44, @@ -24364,85 +24349,97 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, { "criterion": { "id": 182, @@ -24458,6 +24455,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -24497,54 +24502,59 @@ }, "criteriaMet": [ { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 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": 166, @@ -24552,14 +24562,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 171, @@ -24567,44 +24582,34 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -24612,9 +24617,9 @@ "title": "Amendments" }, { - "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": 2, @@ -24627,14 +24632,9 @@ "title": "Demographics" }, { - "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": 54, @@ -24642,40 +24642,45 @@ "title": "Accessibility-Centered 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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://datalinksoftware.com/DataLink-FHIR-API-Documentation.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://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" }, @@ -24725,29 +24730,44 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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, @@ -24755,14 +24775,14 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 37, @@ -24770,19 +24790,9 @@ "title": "Trusted Connection" }, { - "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": 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": 166, @@ -24790,24 +24800,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -24815,84 +24825,79 @@ "title": "Demographics" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -24906,17 +24911,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.myeyecarerecords.com/api" }, { "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.myeyecarerecords.com/api" } @@ -24958,39 +24963,29 @@ }, "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": 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" - }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -25001,6 +24996,16 @@ "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "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" } ], "apiDocumentation": [ @@ -25050,89 +25055,74 @@ }, "criteriaMet": [ { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 12, - "number": "170.315 (a)(12)", - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -25145,29 +25135,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 28, @@ -25180,34 +25175,44 @@ "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 182, @@ -25215,44 +25220,44 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -25266,17 +25271,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": "http://academy.practicesuite.com/mu-api/" }, { "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/" } @@ -25313,39 +25318,44 @@ }, "criteriaMet": [ { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 165, @@ -25353,19 +25363,19 @@ "title": "Transitions of Care" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, @@ -25373,19 +25383,9 @@ "title": "Patient Health Information Capture" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -25393,44 +25393,49 @@ "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": 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": 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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -25438,29 +25443,24 @@ "title": "Clinical Decision Support" }, { - "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, + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -25468,14 +25468,19 @@ "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 5, @@ -25483,29 +25488,29 @@ "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 181, @@ -25513,12 +25518,20 @@ "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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" + }, + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + }, { "criterion": { "id": 181, @@ -25534,14 +25547,6 @@ "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,84 +25586,84 @@ }, "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -25666,24 +25671,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 165, @@ -25691,19 +25686,24 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -25711,14 +25711,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 166, @@ -25726,30 +25731,30 @@ "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": 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" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -25794,59 +25799,79 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -25859,114 +25884,99 @@ "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)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 2, @@ -25974,40 +25984,35 @@ "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": 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": 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" } ], "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://careconnect-uat.netsmartcloud.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://careconnect-uat.netsmartcloud.com/" }, @@ -26052,34 +26057,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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, @@ -26087,44 +26087,39 @@ "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -26132,14 +26127,14 @@ "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" }, { - "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": 174, @@ -26147,59 +26142,44 @@ "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": 9, + "number": "170.315 (a)(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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -26207,27 +26187,60 @@ "title": "Transitions of Care" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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, + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "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://careconnect.netsmartcloud.com/" + }, { "criterion": { "id": 182, @@ -26243,14 +26256,6 @@ "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,34 +26290,9 @@ }, "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -26320,9 +26300,9 @@ "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": 182, @@ -26330,19 +26310,14 @@ "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": 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" }, { "id": 26, @@ -26350,29 +26325,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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, @@ -26380,19 +26350,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 174, @@ -26400,19 +26365,14 @@ "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -26420,9 +26380,24 @@ "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 59, @@ -26430,29 +26405,29 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 56, @@ -26460,19 +26435,49 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -26486,17 +26491,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://careconnect-uat.netsmartcloud.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://careconnect-uat.netsmartcloud.com/" } @@ -26538,29 +26543,9 @@ }, "criteriaMet": [ { - "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, - "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": 178, @@ -26568,29 +26553,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 54, @@ -26598,39 +26583,34 @@ "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 174, @@ -26638,14 +26618,19 @@ "title": "Audit Report(s)" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 13, @@ -26653,29 +26638,29 @@ "title": "Patient-Specific Education Resources" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, @@ -26683,9 +26668,19 @@ "title": "CPOE - Laboratory" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 9, @@ -26693,19 +26688,29 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 181, @@ -26713,40 +26718,32 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "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, @@ -26762,6 +26759,14 @@ "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" @@ -26796,69 +26801,59 @@ }, "criteriaMet": [ { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 39, @@ -26866,34 +26861,29 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 180, @@ -26901,24 +26891,19 @@ "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -26926,39 +26911,49 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "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": 12, @@ -26966,30 +26961,32 @@ "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" - }, { "criterion": { "id": 182, @@ -27005,6 +27002,14 @@ "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" @@ -27039,39 +27044,34 @@ }, "criteriaMet": [ { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 33, @@ -27079,9 +27079,14 @@ "title": "Automatic Access Time-out" }, { - "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": 178, @@ -27089,14 +27094,14 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -27104,29 +27109,19 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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" }, { "id": 32, @@ -27134,29 +27129,34 @@ "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" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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, @@ -27164,14 +27164,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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" }, { "id": 35, @@ -27179,19 +27174,14 @@ "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": 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": 176, @@ -27199,45 +27189,60 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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" } ], "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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, @@ -27287,49 +27292,49 @@ }, "criteriaMet": [ { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -27337,124 +27342,124 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -27468,17 +27473,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://www.geesemed.com/api.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://www.geesemed.com/api.html" } @@ -27520,124 +27525,114 @@ }, "criteriaMet": [ { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -27645,29 +27640,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 15, @@ -27675,79 +27675,84 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 9, + "number": "170.315 (a)(9)", + "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": 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": 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": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -27761,19 +27766,19 @@ }, { "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://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://www.geniusdoc.com/API.php" }, { "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://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://www.geniusdoc.com/API.php" } ], "acb": "SLI Compliance" @@ -27813,89 +27818,109 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "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": 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": 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": 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": 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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 52, @@ -27903,34 +27928,39 @@ "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 176, @@ -27938,39 +27968,14 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 37, @@ -27978,14 +27983,14 @@ "title": "Trusted Connection" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -27993,25 +27998,17 @@ "title": "Automated Measure Calculation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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" - }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" - }, { "criterion": { "id": 181, @@ -28020,6 +28017,14 @@ }, "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" + }, + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, { "criterion": { "id": 56, @@ -28061,39 +28066,34 @@ }, "criteriaMet": [ { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 2, @@ -28101,64 +28101,64 @@ "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 43, @@ -28166,9 +28166,24 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -28181,77 +28196,75 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, { "criterion": { "id": 181, @@ -28267,14 +28280,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-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" @@ -28309,49 +28314,39 @@ }, "criteriaMet": [ { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, @@ -28359,44 +28354,54 @@ "title": "CPOE - Laboratory" }, { - "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": 14, - "number": "170.315 (a)(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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 29, @@ -28404,14 +28409,14 @@ "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 165, @@ -28419,24 +28424,39 @@ "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -28444,19 +28464,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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" }, { - "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": 12, @@ -28464,39 +28489,19 @@ "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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" } ], "apiDocumentation": [ @@ -28557,49 +28562,49 @@ }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -28607,49 +28612,59 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -28657,34 +28672,34 @@ "title": "Multi-Factor Authentication" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 25, @@ -28692,70 +28707,52 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28764,6 +28761,14 @@ }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-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/" + }, { "criterion": { "id": 181, @@ -28810,24 +28815,19 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, @@ -28835,39 +28835,34 @@ "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 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": 39, @@ -28875,14 +28870,29 @@ "title": "Accounting of Disclosures" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 52, @@ -28890,54 +28900,74 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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, @@ -28945,14 +28975,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 44, @@ -28960,29 +28985,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 182, @@ -28990,64 +29010,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -29113,44 +29118,34 @@ }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -29158,9 +29153,9 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 15, @@ -29168,59 +29163,54 @@ "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": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 171, @@ -29228,44 +29218,44 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 167, @@ -29273,19 +29263,34 @@ "title": "Electronic Prescribing" }, { - "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": 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" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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, @@ -29296,9 +29301,9 @@ "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://developers.greenwayhealth.com/developer-platform" }, @@ -29312,9 +29317,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://developers.greenwayhealth.com/developer-platform" } @@ -29351,24 +29356,34 @@ }, "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -29381,39 +29396,34 @@ "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -29421,49 +29431,49 @@ "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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" + "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": 59, @@ -29471,72 +29481,75 @@ "title": "Direct Project" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + }, { "criterion": { "id": 182, @@ -29552,14 +29565,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29594,54 +29599,54 @@ }, "criteriaMet": [ { - "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": 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" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -29649,34 +29654,39 @@ "title": "Application Access - Patient Selection" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 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": 43, @@ -29684,29 +29694,24 @@ "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": 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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 39, @@ -29714,29 +29719,34 @@ "title": "Accounting of Disclosures" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -29744,50 +29754,37 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "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": 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" - }, - "value": "https://developers.greenwayhealth.com/developer-platform" - }, { "criterion": { "id": 56, @@ -29796,6 +29793,14 @@ }, "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, + { + "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": 181, @@ -29837,19 +29842,9 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 35, @@ -29857,74 +29852,94 @@ "title": "End-User Device Encryption" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "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": 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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -29932,92 +29947,90 @@ "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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" }, { - "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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://developers.greenwayhealth.com/developer-platform" + }, { "criterion": { "id": 56, @@ -30033,14 +30046,6 @@ "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developers.greenwayhealth.com/developer-platform" } ], "acb": "Drummond Group" @@ -30085,14 +30090,24 @@ "title": "Integrity" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 25, @@ -30100,24 +30115,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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, @@ -30125,44 +30140,39 @@ "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 46, - "number": "170.315 (f)(4)", - "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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 12, @@ -30170,74 +30180,59 @@ "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 15, @@ -30245,29 +30240,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, @@ -30275,75 +30275,80 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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" }, { - "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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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" } ], "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://hcswebportal.corporate.hcsinc.net/HCSClinicals_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://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, @@ -30388,94 +30393,99 @@ }, "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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, @@ -30483,19 +30493,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 43, @@ -30503,14 +30518,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 44, @@ -30518,24 +30533,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 26, @@ -30543,39 +30553,39 @@ "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "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": 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": 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": 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": 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": 165, @@ -30583,19 +30593,9 @@ "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": 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, @@ -30603,39 +30603,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -30649,17 +30654,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://hcswebportal.corporate.hcsinc.net/hcsclinicals_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://hcswebportal.corporate.hcsinc.net/hcsclinicals_fhir" } @@ -30701,104 +30706,99 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -30806,24 +30806,29 @@ "title": "Demographics" }, { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -30831,85 +30836,77 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, - "number": "170.315 (d)(4)", - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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://harrisambulatory.com/caretracker-api-documentation/" - }, { "criterion": { "id": 56, @@ -30925,6 +30922,14 @@ "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" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -30964,24 +30969,34 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 12, @@ -30989,14 +31004,9 @@ "title": "Family Health History" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -31004,24 +31014,9 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -31029,29 +31024,24 @@ "title": "Implantable Device List" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -31059,14 +31049,19 @@ "title": "Accessibility-Centered Design" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 25, @@ -31074,49 +31069,69 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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" }, { "id": 53, @@ -31124,22 +31139,20 @@ "title": "Quality Management System" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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://cmpl.aidbox.app/documentation" + }, { "criterion": { "id": 181, @@ -31155,14 +31168,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://cmpl.aidbox.app/documentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -31202,89 +31207,79 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" }, { "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": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 51, @@ -31292,14 +31287,14 @@ "title": "Automated Measure Calculation" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 171, @@ -31307,24 +31302,24 @@ "title": "Electronic Health Information 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -31332,49 +31327,54 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 176, @@ -31382,24 +31382,29 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 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" } ], "apiDocumentation": [ @@ -31465,29 +31470,34 @@ }, "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 12, @@ -31495,99 +31505,104 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 41, @@ -31595,44 +31610,34 @@ "title": "Secure Messaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 9, @@ -31640,87 +31645,87 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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" } ], "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://ipclinical.com/documentation/IPClinical-api-documentation.pdf" }, @@ -31734,9 +31739,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://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } @@ -31777,160 +31782,120 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 37, @@ -31938,14 +31903,24 @@ "title": "Trusted Connection" }, { - "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" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 8, @@ -31953,14 +31928,34 @@ "title": "Medication Allergy 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 7, @@ -31968,49 +31963,59 @@ "title": "Medication List" }, { - "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": 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" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" + }, + { + "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://inpracsys.com/fhir" + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" }, { "criterion": { @@ -32022,11 +32027,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://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" + "value": "https://inpracsys.com/fhir" } ], "acb": "SLI Compliance" @@ -32065,60 +32070,70 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -32126,29 +32141,29 @@ "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -32161,14 +32176,14 @@ "title": "Automatic Access Time-out" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -32176,24 +32191,29 @@ "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": 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": 52, + "number": "170.315 (g)(3)", + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 167, @@ -32201,39 +32221,34 @@ "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 36, @@ -32241,19 +32256,9 @@ "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": 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": 171, @@ -32261,19 +32266,19 @@ "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -32338,25 +32343,50 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 29, @@ -32364,19 +32394,24 @@ "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": 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": 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": 54, @@ -32384,19 +32419,44 @@ "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, @@ -32404,9 +32464,9 @@ "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 182, @@ -32414,102 +32474,55 @@ "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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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" + }, { "criterion": { "id": 181, @@ -32525,14 +32538,6 @@ "title": "Application Access - Patient Selection" }, "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" - }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } ], "acb": "Drummond Group" @@ -32572,49 +32577,44 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "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": 56, @@ -32622,24 +32622,24 @@ "title": "Application Access - Patient Selection" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 182, @@ -32652,39 +32652,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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)" - }, - { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 5, @@ -32692,27 +32677,55 @@ "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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://onc.chntechsolutions.com/home/" + }, { "criterion": { "id": 181, @@ -32728,14 +32741,6 @@ "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" @@ -32774,45 +32779,20 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 176, @@ -32820,14 +32800,14 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -32840,19 +32820,44 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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, @@ -32860,22 +32865,22 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -32889,9 +32894,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" } @@ -32928,69 +32933,59 @@ }, "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -32998,9 +32993,14 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 178, @@ -33008,19 +33008,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -33034,17 +33039,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://openapitest.intelichart.com/Help" }, { "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://openapitest.intelichart.com/Help" } @@ -33086,29 +33091,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -33116,89 +33111,84 @@ "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 180, - "number": "170.315 (g)(6)", - "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": 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, + "number": "170.315 (g)(2)", + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -33206,19 +33196,24 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -33226,29 +33221,39 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -33314,99 +33319,84 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "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, @@ -33414,19 +33404,24 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 54, @@ -33434,24 +33429,34 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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": 168, @@ -33459,29 +33464,29 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, @@ -33489,44 +33494,44 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -33591,45 +33596,45 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 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": 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": 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)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -33647,7 +33652,7 @@ ] }, { - "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", + "listSourceURL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", "softwareProducts": [ { "id": 11283, @@ -33678,80 +33683,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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" - }, - { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 171, @@ -33759,9 +33729,14 @@ "title": "Electronic Health Information Export" }, { - "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": 54, @@ -33773,208 +33748,50 @@ "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": 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": 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://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" - }, - { - "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" - } - ], - "acb": "Drummond Group" - }, - { - "id": 10962, - "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1926, - "name": "DSS, Inc." - }, - "product": { - "id": 3642, - "name": "Juno ConnectEHR" - }, - "version": { - "id": 8556, - "name": "22" - }, - "certificationDate": "2022-08-17", - "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" - }, - "criteriaMet": [ - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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, + "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -33982,42 +33799,27 @@ "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": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "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://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/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://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" }, { "criterion": { @@ -34025,16 +33827,11 @@ "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" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { "id": 11301, "chplProductNumber": "15.04.04.2925.Juno.23.01.1.230620", @@ -34065,64 +33862,64 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 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": 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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -34130,24 +33927,19 @@ "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": 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": 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": 12, @@ -34155,19 +33947,29 @@ "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": 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": 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": 180, @@ -34175,59 +33977,54 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "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" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "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" } ], "apiDocumentation": [ @@ -34245,11 +34042,11 @@ ] }, { - "listSourceURL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", "softwareProducts": [ { - "id": 10864, - "chplProductNumber": "15.04.04.2925.JESS.03.02.1.220304", + "id": 10962, + "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", "edition": { "id": 3, "name": "2015" @@ -34263,48 +34060,28 @@ "name": "DSS, Inc." }, "product": { - "id": 3539, - "name": "Juno Emergency Services Solution" + "id": 3642, + "name": "Juno ConnectEHR" }, "version": { - "id": 8462, - "name": "v3.2" + "id": 8556, + "name": "22" }, - "certificationDate": "2022-03-04", + "certificationDate": "2022-08-17", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 44, @@ -34317,54 +34094,232 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "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": 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://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" + }, + "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" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "softwareProducts": [ + { + "id": 10864, + "chplProductNumber": "15.04.04.2925.JESS.03.02.1.220304", + "edition": { + "id": 3, + "name": "2015" + }, + "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": 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": 54, + "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -34372,14 +34327,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 26, @@ -34387,14 +34342,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 3, @@ -34402,14 +34357,19 @@ "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": 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": 173, @@ -34417,29 +34377,74 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 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": 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" } ], "apiDocumentation": [ @@ -34489,29 +34494,39 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -34519,24 +34534,14 @@ "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": 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" } ], "apiDocumentation": [ @@ -34594,29 +34599,29 @@ }, "criteriaMet": [ { - "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": 56, - "number": "170.315 (g)(7)", - "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -34624,24 +34629,19 @@ "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 176, @@ -34649,39 +34649,44 @@ "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 167, @@ -34689,19 +34694,39 @@ "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -34709,14 +34734,9 @@ "title": "Trusted Connection" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, @@ -34724,14 +34744,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 165, @@ -34739,42 +34764,30 @@ "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" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" + }, + "value": "https://www.mdlogic.com/solutions/api-documentation" + }, { "criterion": { "id": 182, @@ -34790,14 +34803,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.mdlogic.com/solutions/api-documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" @@ -34832,24 +34837,19 @@ }, "criteriaMet": [ { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 176, @@ -34857,9 +34857,9 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 9, @@ -34867,19 +34867,24 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -34887,24 +34892,24 @@ "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -34912,9 +34917,14 @@ "title": "Trusted Connection" }, { - "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": 36, @@ -34922,14 +34932,14 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -34937,9 +34947,9 @@ "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": 53, @@ -34947,59 +34957,49 @@ "title": "Quality Management System" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 56, @@ -35007,9 +35007,14 @@ "title": "Application Access - Patient Selection" }, { - "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" } ], "apiDocumentation": [ @@ -35075,39 +35080,34 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -35115,64 +35115,64 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -35180,39 +35180,44 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -35278,29 +35283,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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -35308,139 +35308,139 @@ "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -35448,14 +35448,19 @@ "title": "Emergency Access" }, { - "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": 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": 167, @@ -35463,55 +35468,47 @@ "title": "Electronic Prescribing" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "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, @@ -35527,6 +35524,14 @@ "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 +35571,34 @@ }, "criteriaMet": [ { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -35606,69 +35611,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 171, @@ -35676,64 +35676,64 @@ "title": "Electronic Health Information 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 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": 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": 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": 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": 3, @@ -35741,35 +35741,40 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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)" } ], "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.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, { "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.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, @@ -35819,49 +35824,59 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -35869,14 +35884,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -35884,64 +35894,69 @@ "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "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": 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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { - "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": 35, @@ -35954,49 +35969,44 @@ "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, @@ -36004,25 +36014,12 @@ "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": 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://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" - }, { "criterion": { "id": 181, @@ -36038,6 +36035,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" } ], "acb": "Drummond Group" @@ -36077,54 +36082,29 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 176, @@ -36132,29 +36112,24 @@ "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 43, @@ -36162,29 +36137,34 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 59, @@ -36192,9 +36172,24 @@ "title": "Direct Project" }, { - "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": 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": 26, @@ -36202,19 +36197,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -36222,54 +36222,59 @@ "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -36277,40 +36282,40 @@ "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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" } ], "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.medent.com/onc/" }, { "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.medent.com/onc/" }, @@ -36354,70 +36359,50 @@ "name": "Active" }, "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 165, @@ -36425,29 +36410,19 @@ "title": "Transitions of Care" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -36455,29 +36430,24 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 173, @@ -36485,29 +36455,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 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": 43, @@ -36515,29 +36480,24 @@ "title": "Transmission to Immunization 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" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 1, @@ -36545,9 +36505,9 @@ "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": 172, @@ -36555,35 +36515,72 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" + }, + { + "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://www.medent.com/onc/" - }, { "criterion": { "id": 181, @@ -36599,6 +36596,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.medent.com/onc/" } ], "acb": "Drummond Group" @@ -36638,24 +36643,14 @@ }, "criteriaMet": [ { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, @@ -36663,9 +36658,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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, @@ -36678,9 +36673,29 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -36688,14 +36703,19 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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, @@ -36703,14 +36723,9 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -36718,19 +36733,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 42, @@ -36738,29 +36743,34 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 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": 173, @@ -36773,39 +36783,34 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -36871,24 +36876,14 @@ "title": "Implantable Device List" }, { - "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": 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": 29, @@ -36901,29 +36896,34 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 52, @@ -36931,34 +36931,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, @@ -36966,14 +36971,9 @@ "title": "Family Health History" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, @@ -36981,62 +36981,75 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 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" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.yourcareinteract.com/documentation" + }, { "criterion": { "id": 181, @@ -37052,14 +37065,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.yourcareinteract.com/documentation" } ], "acb": "Drummond Group" @@ -37098,65 +37103,65 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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" }, { - "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": 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": 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": 52, @@ -37164,130 +37169,130 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": [ { "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" }, { "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" }, @@ -37332,19 +37337,24 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 48, @@ -37352,24 +37362,19 @@ "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": 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": 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": 35, @@ -37377,19 +37382,19 @@ "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -37397,34 +37402,34 @@ "title": "Safety-Enhanced 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 56, @@ -37432,82 +37437,90 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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" } ], "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, @@ -37523,14 +37536,6 @@ "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" @@ -37565,24 +37570,24 @@ }, "criteriaMet": [ { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -37590,14 +37595,34 @@ "title": "Demographics" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -37605,14 +37630,14 @@ "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": 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": 173, @@ -37620,19 +37645,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, @@ -37640,64 +37660,49 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, @@ -37705,19 +37710,14 @@ "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": 32, + "number": "170.315 (d)(4)", + "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": 26, @@ -37725,22 +37725,27 @@ "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": 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": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37754,9 +37759,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -37792,60 +37797,80 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -37853,89 +37878,64 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 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": 171, @@ -37943,9 +37943,14 @@ "title": "Electronic Health Information Export" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 25, @@ -37953,35 +37958,35 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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" + "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" }, @@ -38026,84 +38031,69 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -38111,14 +38101,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 33, @@ -38126,29 +38121,34 @@ "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -38156,34 +38156,39 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, @@ -38191,30 +38196,30 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { "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" }, @@ -38259,69 +38264,69 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, @@ -38329,19 +38334,24 @@ "title": "Amendments" }, { - "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" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 3, @@ -38349,39 +38359,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -38389,19 +38404,19 @@ "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -38409,29 +38424,19 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": [ @@ -38445,17 +38450,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://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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38492,29 +38497,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 29, @@ -38522,64 +38517,59 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -38587,34 +38577,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, @@ -38622,9 +38622,19 @@ "title": "Accounting of Disclosures" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -38632,39 +38642,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -38725,54 +38730,49 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -38780,14 +38780,14 @@ "title": "Amendments" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 26, @@ -38795,99 +38795,94 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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, + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 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": 39, @@ -38895,12 +38890,30 @@ "title": "Accounting of Disclosures" }, { - "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": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, @@ -38916,14 +38929,6 @@ "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" @@ -38958,54 +38963,54 @@ }, "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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" }, { - "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": 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": 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": 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": 25, @@ -39013,9 +39018,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 167, @@ -39023,19 +39033,14 @@ "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -39043,40 +39048,50 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 32, "number": "170.315 (d)(4)", @@ -39088,44 +39103,34 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -39185,15 +39190,45 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 37, @@ -39201,69 +39236,59 @@ "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 36, @@ -39271,34 +39296,39 @@ "title": "Integrity" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 174, @@ -39306,14 +39336,9 @@ "title": "Audit Report(s)" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -39321,50 +39346,22 @@ "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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, @@ -39380,6 +39377,14 @@ "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" @@ -39414,49 +39419,49 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -39464,137 +39469,137 @@ "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39608,9 +39613,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39647,119 +39652,104 @@ }, "criteriaMet": [ { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 181, @@ -39767,49 +39757,64 @@ "title": "Application Access - All Data Request" }, { - "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": 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, + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 54, + "number": "170.315 (g)(5)", + "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": 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" } ], "apiDocumentation": [ @@ -39823,17 +39828,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://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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39870,34 +39875,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -39905,39 +39905,74 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "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": 37, @@ -39945,9 +39980,9 @@ "title": "Trusted Connection" }, { - "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": 39, @@ -39955,9 +39990,9 @@ "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": 171, @@ -39965,19 +40000,29 @@ "title": "Electronic Health Information Export" }, { - "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" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 48, @@ -39985,64 +40030,24 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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" } ], "apiDocumentation": [ @@ -40103,29 +40108,39 @@ }, "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 181, @@ -40133,14 +40148,19 @@ "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 56, @@ -40148,19 +40168,9 @@ "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": 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": 9, @@ -40178,49 +40188,34 @@ "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 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": 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": 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, @@ -40228,9 +40223,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": 51, @@ -40238,47 +40233,65 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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" } ], "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, @@ -40294,14 +40307,6 @@ "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" @@ -40336,74 +40341,59 @@ }, "criteriaMet": [ { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 14, @@ -40411,29 +40401,24 @@ "title": "Implantable Device List" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 29, @@ -40441,49 +40426,69 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 39, @@ -40491,32 +40496,32 @@ "title": "Accounting of Disclosures" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -40530,9 +40535,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -40569,14 +40574,9 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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, @@ -40584,29 +40584,34 @@ "title": "Automated Measure Calculation" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 180, - "number": "170.315 (g)(6)", - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -40614,24 +40619,29 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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, @@ -40639,29 +40649,29 @@ "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40669,49 +40679,49 @@ "title": "Family Health History" }, { - "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": 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" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -40719,40 +40729,27 @@ "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" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 181, @@ -40768,6 +40765,14 @@ "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,24 +40807,54 @@ }, "criteriaMet": [ { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 173, @@ -40827,24 +40862,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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, @@ -40852,19 +40887,19 @@ "title": "CPOE - Laboratory" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 25, @@ -40872,34 +40907,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 34, @@ -40907,29 +40937,29 @@ "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -40937,44 +40967,19 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -40988,17 +40993,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://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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41035,99 +41040,84 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -41135,19 +41125,19 @@ "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 4, @@ -41155,19 +41145,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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -41175,45 +41165,60 @@ "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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" } ], "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" }, @@ -41263,19 +41268,24 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 178, @@ -41283,29 +41293,24 @@ "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": 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": 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": 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, @@ -41313,29 +41318,19 @@ "title": "Emergency Access" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 43, @@ -41348,44 +41343,49 @@ "title": "Trusted Connection" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 3, @@ -41393,14 +41393,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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" }, { "id": 171, @@ -41408,19 +41413,19 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -41428,27 +41433,35 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, @@ -41464,14 +41477,6 @@ "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,44 +41516,44 @@ }, "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": 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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 173, @@ -41556,19 +41561,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 42, @@ -41581,99 +41576,104 @@ "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -41681,22 +41681,27 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, @@ -41710,9 +41715,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.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } @@ -41754,44 +41759,54 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -41799,39 +41814,34 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -41839,44 +41849,44 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -41884,19 +41894,24 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 56, @@ -41904,57 +41919,55 @@ "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, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "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" + }, { "criterion": { "id": 56, @@ -41970,14 +41983,6 @@ "title": "Standardized API for Patient and Population Services" }, "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" - }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -42011,70 +42016,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 29, @@ -42087,19 +42047,29 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -42107,29 +42077,24 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 3, @@ -42137,29 +42102,69 @@ "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 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": 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": 12, @@ -42167,24 +42172,24 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": [ @@ -42250,24 +42255,24 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -42275,114 +42280,119 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 26, @@ -42390,29 +42400,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 166, @@ -42420,42 +42420,55 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 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": 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://documents.maximus.care" + }, { "criterion": { "id": 56, @@ -42471,14 +42484,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documents.maximus.care" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://documents.maximus.care" } ], "acb": "SLI Compliance" @@ -42523,39 +42528,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -42563,59 +42558,59 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 2, @@ -42623,24 +42618,24 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 34, @@ -42653,60 +42648,70 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.mhealthaz.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.mhealthaz.com" } @@ -42748,159 +42753,159 @@ }, "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 176, + "number": "170.315 (d)(12)", + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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" + "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": 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" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -42908,14 +42913,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 167, @@ -42927,28 +42932,36 @@ "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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" + }, + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, @@ -42964,14 +42977,6 @@ "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "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" } ], "acb": "Drummond Group" @@ -43011,64 +43016,64 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 178, @@ -43076,39 +43081,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 54, @@ -43116,19 +43126,9 @@ "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": 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, @@ -43136,49 +43136,49 @@ "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": 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": 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": 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": 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -43186,34 +43186,39 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -43227,17 +43232,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://www.viewmymed.com/api/usage.php" }, { "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://www.viewmymed.com/api/usage.php" } @@ -43279,19 +43284,29 @@ }, "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" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "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, @@ -43299,59 +43314,44 @@ "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": 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": 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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -43359,9 +43359,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 172, @@ -43369,29 +43369,34 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -43399,54 +43404,49 @@ "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": 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": 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": 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": 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": 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": 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": 176, @@ -43454,19 +43454,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -43474,22 +43464,37 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, @@ -43503,9 +43508,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://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } @@ -43547,24 +43552,24 @@ }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 37, @@ -43572,39 +43577,44 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 173, @@ -43612,24 +43622,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 26, @@ -43637,39 +43657,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -43677,19 +43697,24 @@ "title": "Application Access - All Data Request" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -43697,34 +43722,19 @@ "title": "Automatic Access Time-out" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 35, @@ -43732,30 +43742,17 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://medi-ehr.com/public-fhir-api" - }, { "criterion": { "id": 181, @@ -43771,6 +43768,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://medi-ehr.com/compliance" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://medi-ehr.com/public-fhir-api" } ], "acb": "SLI Compliance" @@ -43815,19 +43820,24 @@ "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -43835,9 +43845,14 @@ "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -43845,49 +43860,54 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 171, @@ -43895,79 +43915,84 @@ "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 4, @@ -43975,14 +44000,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 15, @@ -43990,39 +44015,19 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -44036,19 +44041,19 @@ }, { "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://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + "value": "https://docs.medifusion.com/" }, { "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.medifusion.com/" + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" } ], "acb": "SLI Compliance" @@ -44088,94 +44093,74 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -44183,59 +44168,54 @@ "title": "Transitions of Care" }, { - "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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, + { + "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 46, @@ -44243,19 +44223,9 @@ "title": "Transmission to Cancer Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 15, @@ -44268,42 +44238,85 @@ "title": "Emergency Access" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" + }, { "criterion": { "id": 56, @@ -44319,14 +44332,6 @@ "title": "Application Access - All Data Request" }, "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" } ], "acb": "SLI Compliance" @@ -44366,24 +44371,44 @@ }, "criteriaMet": [ { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "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": 180, @@ -44391,54 +44416,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, @@ -44446,64 +44466,44 @@ "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "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)" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -44511,90 +44511,95 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 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/MedicsDAExtAPI/Home/Help" }, { "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://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" }, @@ -44644,14 +44649,34 @@ }, "criteriaMet": [ { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -44659,14 +44684,19 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -44679,59 +44709,49 @@ "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 52, @@ -44739,49 +44759,49 @@ "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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -44789,19 +44809,9 @@ "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": 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, @@ -44809,42 +44819,37 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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" } ], "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://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" }, @@ -44858,9 +44863,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://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } @@ -44902,19 +44907,9 @@ }, "criteriaMet": [ { - "id": 176, - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -44922,14 +44917,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -44937,9 +44932,9 @@ "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": 29, @@ -44947,9 +44942,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "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)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -44999,29 +45004,29 @@ }, "criteriaMet": [ { - "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 1, @@ -45029,14 +45034,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 59, @@ -45044,39 +45044,49 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -45084,89 +45094,89 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 46, @@ -45174,38 +45184,33 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { @@ -45218,9 +45223,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://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45257,94 +45262,124 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization 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": 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": 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": 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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 36, @@ -45352,19 +45387,24 @@ "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -45372,14 +45412,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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -45387,24 +45427,14 @@ "title": "Audit Report(s)" }, { - "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": 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": 9, @@ -45412,57 +45442,32 @@ "title": "Clinical Decision Support" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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" } ], "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://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -45476,9 +45481,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://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45519,30 +45524,30 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -45550,19 +45555,14 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -45570,49 +45570,24 @@ "title": "Implantable Device List" }, { - "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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" }, { "id": 54, @@ -45620,14 +45595,19 @@ "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": 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": 53, @@ -45635,14 +45615,19 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 167, @@ -45650,9 +45635,19 @@ "title": "Electronic Prescribing" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 1, @@ -45660,19 +45655,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 32, @@ -45680,25 +45675,35 @@ "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://code.cerner.com/apiaccess" }, @@ -45748,24 +45753,24 @@ }, "criteriaMet": [ { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -45773,19 +45778,14 @@ "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": 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": 177, @@ -45793,49 +45793,54 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -45849,17 +45854,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://www.mphrx.com/api-guide_mphrx/" }, { "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.mphrx.com/api-guide_mphrx/" } @@ -45901,29 +45906,19 @@ }, "criteriaMet": [ { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -45931,14 +45926,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": 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, @@ -45946,9 +45941,19 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, @@ -45956,44 +45961,54 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -46001,34 +46016,34 @@ "title": "Electronic Prescribing" }, { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, @@ -46036,9 +46051,14 @@ "title": "Patient Health Information Capture" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -46046,72 +46066,65 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://openapi.modulemd.com" + }, { "criterion": { "id": 181, @@ -46127,14 +46140,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.modulemd.com" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://openapi.modulemd.com" } ], "acb": "Drummond Group" @@ -46174,44 +46179,49 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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" }, { "id": 171, @@ -46219,19 +46229,9 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 180, @@ -46239,14 +46239,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 165, @@ -46264,42 +46259,52 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 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" + "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" }, @@ -46313,9 +46318,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://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } @@ -46351,45 +46356,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 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": 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": 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": 35, @@ -46397,19 +46392,9 @@ "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": 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": 3, @@ -46417,29 +46402,49 @@ "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "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": 33, - "number": "170.315 (d)(5)", - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -46447,29 +46452,29 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -46483,17 +46488,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://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" + "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" } @@ -46535,39 +46540,34 @@ }, "criteriaMet": [ { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "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": 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": 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": 176, @@ -46575,24 +46575,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -46600,42 +46600,47 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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://www.navigatingcancer.com/requirements-incentives/" }, @@ -46649,9 +46654,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.navigatingcancer.com/requirements-incentives/" } @@ -46693,44 +46698,59 @@ }, "criteriaMet": [ { - "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": 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": 181, - "number": "170.315 (g)(9)", - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -46738,14 +46758,39 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, @@ -46753,19 +46798,19 @@ "title": "Direct Project" }, { - "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": 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": 172, @@ -46773,14 +46818,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -46788,110 +46833,62 @@ "title": "Quality Management System" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "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, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" - }, - { - "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": 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": [ - { - "criterion": { - "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": 181, @@ -46907,6 +46904,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" + }, + { + "criterion": { + "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/" } ], "acb": "Drummond Group" @@ -46941,124 +46946,114 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "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, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 41, "number": "170.315 (e)(2)", "title": "Secure Messaging" }, + { + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -47066,54 +47061,54 @@ "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" }, { - "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": 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": 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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 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": 8, @@ -47121,19 +47116,19 @@ "title": "Medication Allergy List" }, { - "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": 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": 11, @@ -47141,39 +47136,49 @@ "title": "Smoking Status" }, { - "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://nethealthapis-integration.nhsinc.com/index.html" }, { "criterion": { @@ -47185,11 +47190,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://nethealthapis-integration.nhsinc.com/index.html" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -47229,29 +47234,24 @@ }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -47259,44 +47259,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 12, @@ -47304,44 +47279,44 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 175, @@ -47349,19 +47324,19 @@ "title": "Auditing Actions on Health Information" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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, @@ -47369,29 +47344,34 @@ "title": "Amendments" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 51, @@ -47399,85 +47379,110 @@ "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 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": 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.nextgen.com/api" }, { "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.nextgen.com/api" }, @@ -47522,9 +47527,14 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -47532,24 +47542,24 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 28, @@ -47557,44 +47567,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -47602,34 +47617,29 @@ "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 9, @@ -47637,127 +47647,130 @@ "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": 36, - "number": "170.315 (d)(8)", - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "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": 175, "number": "170.315 (d)(10)", "title": "Auditing Actions on Health Information" }, - { - "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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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://www.nextgen.com/api" + }, { "criterion": { "id": 56, @@ -47773,14 +47786,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.nextgen.com/api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" @@ -47815,14 +47820,44 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 53, @@ -47830,44 +47865,44 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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, @@ -47875,39 +47910,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -47915,29 +47950,24 @@ "title": "Integrity" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -47945,89 +47975,64 @@ "title": "Automatic Access Time-out" }, { - "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" + "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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "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": 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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 5, @@ -48035,19 +48040,19 @@ "title": "Demographics" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -48113,49 +48118,54 @@ }, "criteriaMet": [ { - "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 51, @@ -48163,94 +48173,94 @@ "title": "Automated Measure Calculation" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -48258,59 +48268,54 @@ "title": "Electronic Health Information 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": 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": 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": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "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": 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" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -48376,14 +48381,19 @@ }, "criteriaMet": [ { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -48391,69 +48401,69 @@ "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -48461,34 +48471,24 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 39, @@ -48496,70 +48496,75 @@ "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "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": 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" + }, + { + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nextech.com/developers-portal" }, { "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.nextech.com/developers-portal" }, @@ -48604,94 +48609,84 @@ }, "criteriaMet": [ { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 59, @@ -48699,39 +48694,44 @@ "title": "Direct Project" }, { - "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": 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": 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": 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": 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": 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": 172, @@ -48739,39 +48739,29 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 29, - "number": "170.315 (d)(1)", - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 176, @@ -48779,14 +48769,29 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -48800,17 +48805,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.nextech.com/developers-portal" }, { "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" } @@ -48852,69 +48857,74 @@ }, "criteriaMet": [ { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -48922,44 +48932,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -48967,92 +48982,82 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "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.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, @@ -49066,9 +49071,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.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } @@ -49110,14 +49115,9 @@ }, "criteriaMet": [ { - "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": 36, @@ -49125,59 +49125,64 @@ "title": "Integrity" }, { - "id": 51, - "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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -49185,24 +49190,29 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 33, @@ -49210,39 +49220,39 @@ "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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -49255,29 +49265,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -49285,30 +49285,27 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 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": "http://www.novomedici.com/meaningful-use/" - }, { "criterion": { "id": 182, @@ -49324,12 +49321,20 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.novomedici.com/meaningful-use/" - } - ], - "acb": "SLI Compliance" - } - ] - }, + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.novomedici.com/meaningful-use/" + } + ], + "acb": "SLI Compliance" + } + ] + }, { "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", "softwareProducts": [ @@ -49363,44 +49368,39 @@ }, "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -49408,39 +49408,64 @@ "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" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "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": 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": 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": 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": 37, @@ -49448,24 +49473,14 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -49473,29 +49488,34 @@ "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 35, @@ -49503,24 +49523,9 @@ "title": "End-User Device Encryption" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 178, @@ -49528,45 +49533,45 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "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://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49611,49 +49616,54 @@ }, "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, @@ -49661,64 +49671,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 4, @@ -49726,90 +49731,82 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" - }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" - }, { "criterion": { "id": 56, @@ -49825,6 +49822,14 @@ "title": "Standardized API for Patient and Population Services" }, "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" @@ -49864,19 +49869,14 @@ }, "criteriaMet": [ { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -49884,114 +49884,124 @@ "title": "CPOE - Laboratory" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -49999,14 +50009,9 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -50056,24 +50061,9 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -50081,39 +50071,39 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -50121,19 +50111,34 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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": 33, @@ -50141,24 +50146,24 @@ "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -50166,9 +50171,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 3, @@ -50176,19 +50186,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 179, @@ -50196,49 +50206,44 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -50304,19 +50309,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 54, @@ -50324,19 +50329,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 51, @@ -50344,9 +50354,14 @@ "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -50354,39 +50369,49 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 26, @@ -50399,19 +50424,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 43, @@ -50419,14 +50444,14 @@ "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": 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, @@ -50434,110 +50459,82 @@ "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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.omnimd.com/open-api/" - }, { "criterion": { "id": 182, @@ -50546,6 +50543,14 @@ }, "value": "https://fhirregistration.omnimd.com/#/specification" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.omnimd.com/open-api/" + }, { "criterion": { "id": 56, @@ -50587,34 +50592,29 @@ }, "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 173, @@ -50622,64 +50622,74 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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, + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 46, @@ -50687,74 +50697,69 @@ "title": "Transmission to Cancer Registries" }, { - "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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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" + "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": 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": 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": 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": 59, @@ -50762,19 +50767,19 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -50782,37 +50787,45 @@ "title": "Electronic Prescribing" }, { - "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" + }, { "criterion": { "id": 56, @@ -50828,14 +50841,6 @@ "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" @@ -50874,25 +50879,45 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -50900,19 +50925,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -50920,69 +50935,84 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, "number": "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -50990,34 +51020,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 173, @@ -51025,55 +51050,27 @@ "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, - "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" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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://flatiron.force.com/FHIR/s/" - }, { "criterion": { "id": 181, @@ -51089,6 +51086,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://flatiron.force.com/FHIR/s/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://flatiron.force.com/FHIR/s/" } ], "acb": "Drummond Group" @@ -51127,25 +51132,15 @@ "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": 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": 165, @@ -51153,24 +51148,44 @@ "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -51178,24 +51193,29 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -51203,44 +51223,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -51248,22 +51258,17 @@ "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": 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.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, @@ -51277,9 +51282,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.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" } @@ -51321,9 +51326,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -51331,14 +51336,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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, @@ -51346,14 +51356,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -51361,29 +51371,19 @@ "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 29, @@ -51391,9 +51391,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 173, @@ -51401,39 +51401,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, @@ -51441,39 +51446,34 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "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": 179, @@ -51481,29 +51481,29 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 42, @@ -51511,22 +51511,27 @@ "title": "Patient Health Information Capture" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, @@ -51540,9 +51545,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.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51583,176 +51588,168 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 56, - "number": "170.315 (g)(7)", - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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" }, - { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" - }, { "criterion": { "id": 182, @@ -51768,6 +51765,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + }, + { + "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" } ], "acb": "SLI Compliance" @@ -51807,49 +51812,54 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -51857,24 +51867,14 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -51882,14 +51882,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -51897,54 +51892,59 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 172, @@ -51952,65 +51952,70 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 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" } ], "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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, { "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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, @@ -52060,64 +52065,64 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 29, @@ -52125,14 +52130,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 2, @@ -52145,29 +52155,29 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 43, @@ -52175,64 +52185,69 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 173, @@ -52240,19 +52255,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, @@ -52323,14 +52328,19 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 171, @@ -52338,44 +52348,44 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 39, @@ -52383,64 +52393,59 @@ "title": "Accounting of Disclosures" }, { - "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, + "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": 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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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, @@ -52448,14 +52453,19 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, @@ -52463,29 +52473,14 @@ "title": "Application Access - All Data Request" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 34, @@ -52493,9 +52488,9 @@ "title": "Emergency Access" }, { - "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": 36, @@ -52503,55 +52498,65 @@ "title": "Integrity" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.pcesystems.com/g10APIInfo.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.pcesystems.com/g10APIInfo.html" }, @@ -52600,110 +52605,80 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -52711,24 +52686,34 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -52736,54 +52721,69 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -52791,17 +52791,22 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.pcisgold.com" }, @@ -52815,9 +52820,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://fhir.pcisgold.com" } @@ -52859,24 +52864,24 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -52884,25 +52889,30 @@ "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 28, "number": "170.315 (c)(4)", @@ -52914,34 +52924,24 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -52949,34 +52949,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -52984,19 +52979,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -53004,29 +53004,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, @@ -53034,50 +53039,50 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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" } ], "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.mdsuite.com/api/help/index" }, { "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.mdsuite.com/api/help/index" }, @@ -53127,65 +53132,65 @@ }, "criteriaMet": [ { - "id": 56, - "number": "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": 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" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "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": 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": 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" + "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" } @@ -53222,29 +53227,19 @@ }, "criteriaMet": [ { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -53252,24 +53247,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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" } ], "apiDocumentation": [ @@ -53327,19 +53332,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" }, { "id": 33, @@ -53347,14 +53352,9 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -53362,39 +53362,39 @@ "title": "Trusted Connection" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -53402,14 +53402,9 @@ "title": "Transitions of Care" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 174, @@ -53417,60 +53412,70 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "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.thesnfist.com/cures-update" }, { "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.thesnfist.com/cures-update" }, @@ -53520,54 +53525,54 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 52, @@ -53575,14 +53580,24 @@ "title": "Safety-Enhanced Design" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -53590,9 +53605,9 @@ "title": "Multi-Factor Authentication" }, { - "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": 32, @@ -53600,9 +53615,14 @@ "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 51, @@ -53610,29 +53630,19 @@ "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 43, @@ -53640,90 +53650,85 @@ "title": "Transmission to Immunization Registries" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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.allscripts.com/Fhir/Introduction" }, { "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" }, @@ -53768,24 +53773,29 @@ }, "criteriaMet": [ { - "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": 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" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 43, @@ -53793,24 +53803,9 @@ "title": "Transmission to Immunization Registries" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -53818,99 +53813,79 @@ "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "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": 37, + "number": "170.315 (d)(9)", + "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": 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, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "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" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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, @@ -53918,14 +53893,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 52, @@ -53933,9 +53928,14 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -53943,35 +53943,40 @@ "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "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/Fhir/Introduction" }, { "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" }, @@ -54016,24 +54021,9 @@ }, "criteriaMet": [ { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -54041,14 +54031,14 @@ "title": "Transmission to Immunization Registries" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 21, @@ -54056,39 +54046,44 @@ "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -54096,54 +54091,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 44, @@ -54151,14 +54136,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 37, @@ -54166,19 +54151,9 @@ "title": "Trusted Connection" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -54186,24 +54161,54 @@ "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": 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, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -54217,17 +54222,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://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" } @@ -54264,64 +54269,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 56, - "number": "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 178, @@ -54329,14 +54294,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 44, @@ -54344,9 +54304,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 1, @@ -54354,24 +54319,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization 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": 173, @@ -54379,14 +54349,14 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, @@ -54394,19 +54364,19 @@ "title": "Electronic Prescribing" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -54414,24 +54384,34 @@ "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 176, @@ -54439,32 +54419,57 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "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" }, @@ -54478,9 +54483,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" } @@ -54517,54 +54522,59 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, @@ -54572,64 +54582,59 @@ "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 39, @@ -54637,49 +54642,44 @@ "title": "Accounting of Disclosures" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 4, @@ -54687,29 +54687,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -54770,29 +54775,24 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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, @@ -54800,24 +54800,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 42, @@ -54825,19 +54820,19 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -54845,14 +54840,29 @@ "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, @@ -54860,24 +54870,19 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, @@ -54885,100 +54890,92 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "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": 56, @@ -54994,6 +54991,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -55028,44 +55033,34 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -55073,44 +55068,44 @@ "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": 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": 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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 9, @@ -55118,19 +55113,19 @@ "title": "Clinical Decision Support" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 49, @@ -55138,122 +55133,140 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, + { + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "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://developer.allscripts.com/" + }, { "criterion": { "id": 56, @@ -55269,14 +55282,6 @@ "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" @@ -55310,65 +55315,85 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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" + "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": 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": 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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 42, @@ -55376,44 +55401,39 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 36, @@ -55421,54 +55441,29 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 48, @@ -55476,49 +55471,44 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 29, @@ -55526,22 +55516,37 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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" + }, + { + "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)" } ], "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/" }, @@ -55555,9 +55560,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://developer.allscripts.com/" } @@ -55594,24 +55599,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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, @@ -55624,54 +55649,49 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -55679,29 +55699,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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, @@ -55709,19 +55729,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "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": 165, @@ -55729,29 +55749,29 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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, @@ -55759,59 +55779,44 @@ "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 181, @@ -55877,54 +55882,54 @@ }, "criteriaMet": [ { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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, - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -55932,44 +55937,49 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 173, @@ -55977,19 +55987,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -55997,74 +56002,69 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 14, @@ -56072,34 +56072,39 @@ "title": "Implantable Device List" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -56160,19 +56165,24 @@ }, "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": 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" + "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": 37, @@ -56180,19 +56190,24 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, @@ -56200,79 +56215,79 @@ "title": "Emergency Access" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 182, @@ -56280,29 +56295,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 44, @@ -56310,9 +56320,9 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, @@ -56320,19 +56330,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 3, @@ -56340,47 +56340,52 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, @@ -56394,9 +56399,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/" } @@ -56433,104 +56438,99 @@ }, "criteriaMet": [ { - "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" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -56538,14 +56538,24 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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, @@ -56553,59 +56563,64 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 15, @@ -56613,50 +56628,32 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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": 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" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, @@ -56672,6 +56669,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" @@ -56705,75 +56710,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 173, @@ -56781,79 +56751,74 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, @@ -56861,75 +56826,107 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, + "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": 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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 56, @@ -56945,6 +56942,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" @@ -56979,9 +56984,9 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -56989,39 +56994,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 5, @@ -57029,114 +57034,99 @@ "title": "Demographics" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -57144,9 +57134,14 @@ "title": "Quality Management System" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 174, @@ -57154,44 +57149,54 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -57252,9 +57257,9 @@ }, "criteriaMet": [ { - "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": 34, @@ -57262,29 +57267,19 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 35, @@ -57292,75 +57287,85 @@ "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": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "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, "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" } ], "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/" } @@ -57397,64 +57402,64 @@ }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -57462,29 +57467,29 @@ "title": "Trusted Connection" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -57537,24 +57542,19 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -57562,34 +57562,34 @@ "title": "Automatic Access Time-out" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -57597,19 +57597,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -57617,35 +57622,35 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" + "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/" } @@ -57686,40 +57691,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 1, @@ -57727,29 +57717,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 14, @@ -57757,84 +57742,84 @@ "title": "Implantable Device List" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -57842,34 +57827,39 @@ "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 181, @@ -57877,9 +57867,24 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -57945,54 +57950,39 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 25, @@ -58000,24 +57990,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -58025,39 +58020,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, @@ -58065,14 +58050,19 @@ "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 174, @@ -58080,54 +58070,34 @@ "title": "Audit Report(s)" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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" }, { "id": 172, @@ -58135,19 +58105,54 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -58213,39 +58218,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -58253,34 +58258,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 5, @@ -58288,14 +58283,14 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 56, @@ -58307,25 +58302,40 @@ "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 173, @@ -58333,19 +58343,14 @@ "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": [ @@ -58410,40 +58415,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 180, @@ -58455,48 +58445,71 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.willowgladetechnologies.com/requirements" + }, { "criterion": { "id": 182, @@ -58512,14 +58525,6 @@ "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,9 +58564,14 @@ }, "criteriaMet": [ { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 166, @@ -58569,49 +58579,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -58619,99 +58614,84 @@ "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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" - }, { "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": 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": 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": 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": 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": 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, - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -58719,9 +58699,14 @@ "title": "Safety-Enhanced 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -58729,55 +58714,75 @@ "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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 26, + "number": "170.315 (c)(2)", + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, @@ -58827,74 +58832,69 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 42, @@ -58902,34 +58902,44 @@ "title": "Patient Health Information Capture" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 34, @@ -58937,44 +58947,49 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 11, @@ -58982,69 +58997,54 @@ "title": "Smoking Status" }, { - "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": 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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 5, @@ -59052,22 +59052,35 @@ "title": "Demographics" }, { - "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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://mraemr.com:47102/api/help_document.asp" + }, { "criterion": { "id": 181, @@ -59083,14 +59096,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://mraemr.com:47102/api/help_document.asp" } ], "acb": "ICSA Labs" @@ -59130,14 +59135,24 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -59145,109 +59160,134 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "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": 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": 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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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" }, { - "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": 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": 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" + "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 56, @@ -59255,14 +59295,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -59270,49 +59310,19 @@ "title": "Safety-Enhanced 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 167, @@ -59320,17 +59330,20 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 181, @@ -59346,14 +59359,6 @@ "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,9 +59393,14 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 181, @@ -59408,69 +59418,69 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -59478,29 +59488,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 32, @@ -59508,90 +59513,82 @@ "title": "Amendments" }, { - "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, - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 56, @@ -59607,6 +59604,14 @@ "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,19 +59646,24 @@ }, "criteriaMet": [ { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -59666,14 +59676,14 @@ "title": "Data Export" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 172, @@ -59681,54 +59691,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -59736,39 +59726,59 @@ "title": "Demographics" }, { - "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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 12, @@ -59776,64 +59786,59 @@ "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ @@ -59867,11 +59872,11 @@ ] }, { - "listSourceURL": "https://dataapi.practiceehr.com", + "listSourceURL": "https://fhir.pointclickcare.com/", "softwareProducts": [ { - "id": 10923, - "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", + "id": 10246, + "chplProductNumber": "15.04.04.2181.Poin.04.00.1.191231", "edition": { "id": 3, "name": "2015" @@ -59881,72 +59886,87 @@ "name": "" }, "developer": { - "id": 1998, - "name": "Practice EHR LLC" + "id": 1182, + "name": "PointClickCare Technologies Inc." }, "product": { - "id": 2790, - "name": "Practice EHR" + "id": 1948, + "name": "PointClickCare" }, "version": { - "id": 7051, - "name": "V12" + "id": 7982, + "name": "4" }, - "certificationDate": "2022-06-28", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 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": 176, @@ -59954,14 +59974,9 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -59969,14 +59984,9 @@ "title": "Patient Health Information Capture" }, { - "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": 37, @@ -59984,29 +59994,29 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -60014,29 +60024,9 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -60044,14 +60034,19 @@ "title": "Electronic Health Information Export" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -60059,29 +60054,42 @@ "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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://fhir-qa.pcc-labs.com/PointClickCare.html" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" }, { "criterion": { @@ -60089,15 +60097,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" } ], "acb": "Drummond Group" @@ -60105,11 +60105,11 @@ ] }, { - "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", + "listSourceURL": "https://dataapi.practiceehr.com", "softwareProducts": [ { - "id": 9856, - "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", + "id": 10923, + "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", "edition": { "id": 3, "name": "2015" @@ -60119,42 +60119,52 @@ "name": "" }, "developer": { - "id": 191, - "name": "California Medical Systems" + "id": 1998, + "name": "Practice EHR LLC" }, "product": { - "id": 289, - "name": "Practice Expert" + "id": 2790, + "name": "Practice EHR" }, "version": { - "id": 7634, - "name": "2018" + "id": 7051, + "name": "V12" }, - "certificationDate": "2018-12-22", + "certificationDate": "2022-06-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -60162,24 +60172,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -60187,29 +60207,24 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -60217,132 +60232,94 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "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://cal-med.com/onc.html" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://cal-med.com/Calmed_API_Document.pdf" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { @@ -60350,7 +60327,15 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://cal-med.com/onc.html" + "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" @@ -60358,11 +60343,11 @@ ] }, { - "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", + "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", "softwareProducts": [ { - "id": 9833, - "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", + "id": 9856, + "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", "edition": { "id": 3, "name": "2015" @@ -60372,57 +60357,42 @@ "name": "" }, "developer": { - "id": 1925, - "name": "Practice Fusion" + "id": 191, + "name": "California Medical Systems" }, "product": { - "id": 3399, - "name": "Practice Fusion EHR" + "id": 289, + "name": "Practice Expert" }, "version": { - "id": 7611, - "name": "3.7" + "id": 7634, + "name": "2018" }, - "certificationDate": "2018-12-31", + "certificationDate": "2018-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, @@ -60430,49 +60400,29 @@ "title": "Family Health History" }, { - "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -60480,75 +60430,80 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 25, "number": "170.315 (c)(1)", @@ -60560,24 +60515,19 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -60585,44 +60535,34 @@ "title": "Emergency Access" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -60632,23 +60572,23 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.practicefusion.com/fhir/api-specifications/" + "value": "https://cal-med.com/onc.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.practicefusion.com/pds-api/developer-guide/" + "value": "http://cal-med.com/Calmed_API_Document.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.practicefusion.com/pds-api/developer-guide/" + "value": "https://cal-med.com/onc.html" } ], "acb": "Drummond Group" @@ -60656,11 +60596,11 @@ ] }, { - "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", + "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", "softwareProducts": [ { - "id": 9590, - "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", + "id": 9833, + "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -60670,32 +60610,32 @@ "name": "" }, "developer": { - "id": 986, - "name": "MicroFour, Inc." + "id": 1925, + "name": "Practice Fusion" }, "product": { - "id": 1667, - "name": "PracticeStudio" + "id": 3399, + "name": "Practice Fusion EHR" }, "version": { - "id": 7412, - "name": "X20" + "id": 7611, + "name": "3.7" }, - "certificationDate": "2018-08-10", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -60703,44 +60643,74 @@ "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 41, @@ -60748,24 +60718,24 @@ "title": "Secure Messaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 181, @@ -60773,44 +60743,44 @@ "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 14, + "number": "170.315 (a)(14)", + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -60818,14 +60788,9 @@ "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 25, @@ -60833,49 +60798,39 @@ "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 54, @@ -60883,52 +60838,47 @@ "title": "Accessibility-Centered Design" }, { - "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" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" }, { "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://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.practicefusion.com/fhir/api-specifications/" }, { "criterion": { @@ -60936,7 +60886,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" } ], "acb": "Drummond Group" @@ -60944,11 +60894,11 @@ ] }, { - "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", + "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", "softwareProducts": [ { - "id": 10853, - "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", + "id": 9590, + "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", "edition": { "id": 3, "name": "2015" @@ -60958,37 +60908,92 @@ "name": "" }, "developer": { - "id": 1767, - "name": "Infor-Med Medical Information Systems Inc." + "id": 986, + "name": "MicroFour, Inc." }, "product": { - "id": 3403, - "name": "Praxis EMR" + "id": 1667, + "name": "PracticeStudio" }, "version": { - "id": 8081, - "name": "9" + "id": 7412, + "name": "X20" }, - "certificationDate": "2022-03-10", + "certificationDate": "2018-08-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "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, @@ -60996,19 +61001,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 54, @@ -61016,29 +61016,24 @@ "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": 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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 172, @@ -61046,44 +61041,44 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 35, @@ -61091,84 +61086,79 @@ "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 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" } ], "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.praxisemr.com/applicationaccess/api/help/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" }, { "criterion": { @@ -61176,27 +61166,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" }, { "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/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", + "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", "softwareProducts": [ { - "id": 11155, - "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", + "id": 10853, + "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", "edition": { "id": 3, "name": "2015" @@ -61206,47 +61196,42 @@ "name": "" }, "developer": { - "id": 1215, - "name": "Procentive" + "id": 1767, + "name": "Infor-Med Medical Information Systems Inc." }, "product": { - "id": 1987, - "name": "Procentive" + "id": 3403, + "name": "Praxis EMR" }, "version": { - "id": 8723, - "name": "2" + "id": 8081, + "name": "9" }, - "certificationDate": "2022-12-28", + "certificationDate": "2022-03-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -61254,19 +61239,19 @@ "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": 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": 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": 36, @@ -61274,9 +61259,29 @@ "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -61284,9 +61289,24 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -61294,14 +61314,14 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -61309,9 +61329,9 @@ "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": 33, @@ -61319,39 +61339,24 @@ "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -61359,61 +61364,77 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.praxisemr.com/applicationaccess/api/help/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.praxisemr.com/applicationaccess/api/help/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.praxisemr.com/applicationaccess/api/help/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", + "listSourceURL": "https://fhir.procentive.com/", "softwareProducts": [ { - "id": 11391, - "chplProductNumber": "15.04.04.2837.Puls.08.02.1.231206", + "id": 11155, + "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", "edition": { "id": 3, "name": "2015" @@ -61423,42 +61444,37 @@ "name": "" }, "developer": { - "id": 1838, - "name": "Pulse Systems, Inc" + "id": 1215, + "name": "Procentive" }, "product": { - "id": 2910, - "name": "Pulse EHR" + "id": 1987, + "name": "Procentive" }, "version": { - "id": 8901, - "name": "8.01" + "id": 8723, + "name": "2" }, - "certificationDate": "2023-12-06", + "certificationDate": "2022-12-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 165, @@ -61466,24 +61482,24 @@ "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 177, @@ -61491,84 +61507,79 @@ "title": "Multi-Factor Authentication" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" }, { - "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 180, @@ -61576,24 +61587,24 @@ "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": 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": 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": 35, @@ -61601,62 +61612,46 @@ "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, - { - "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" }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" + "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", + "softwareProducts": [ { - "id": 11180, - "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", + "id": 11391, + "chplProductNumber": "15.04.04.2837.Puls.08.02.1.231206", "edition": { "id": 3, "name": "2015" @@ -61674,59 +61669,54 @@ "name": "Pulse EHR" }, "version": { - "id": 8737, - "name": "8.0" + "id": 8901, + "name": "8.01" }, - "certificationDate": "2022-12-29", + "certificationDate": "2023-12-06", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 174, @@ -61734,9 +61724,9 @@ "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -61744,9 +61734,19 @@ "title": "Direct Project" }, { - "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": 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, @@ -61754,39 +61754,64 @@ "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -61794,50 +61819,25 @@ "title": "Electronic Prescribing" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 54, "number": "170.315 (g)(5)", @@ -61849,22 +61849,30 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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://harrisambulatory.com/pulse-api-documentation/" + }, { "criterion": { "id": 56, @@ -61880,26 +61888,13 @@ "title": "Standardized API for Patient and Population Services" }, "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" - } - ] - }, - { - "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11213, - "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", + "id": 11180, + "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", "edition": { "id": 3, "name": "2015" @@ -61909,97 +61904,117 @@ "name": "" }, "developer": { - "id": 2140, - "name": "Pure EHR LLC" + "id": 1838, + "name": "Pulse Systems, Inc" }, "product": { - "id": 3690, - "name": "Pure EHR" + "id": 2910, + "name": "Pulse EHR" }, "version": { - "id": 8755, - "name": "1.0" + "id": 8737, + "name": "8.0" }, - "certificationDate": "2023-01-10", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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, + "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" + "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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, @@ -62007,29 +62022,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -62037,29 +62067,29 @@ "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -62067,19 +62097,19 @@ "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" } ], "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://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { @@ -62087,15 +62117,15 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://harrisambulatory.com/pulse-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://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -62103,11 +62133,11 @@ ] }, { - "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", + "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", "softwareProducts": [ { - "id": 10803, - "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", + "id": 11213, + "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", "edition": { "id": 3, "name": "2015" @@ -62117,83 +62147,28 @@ "name": "" }, "developer": { - "id": 2099, - "name": "Magilen Enterprises Inc" + "id": 2140, + "name": "Pure EHR LLC" }, "product": { - "id": 3604, - "name": "QSmartCare" + "id": 3690, + "name": "Pure EHR" }, "version": { - "id": 8432, + "id": 8755, "name": "1.0" }, - "certificationDate": "2022-01-27", + "certificationDate": "2023-01-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, { "id": 32, "number": "170.315 (d)(4)", @@ -62205,74 +62180,69 @@ "title": "Quality Management System" }, { - "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": 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": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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)", - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 171, @@ -62280,9 +62250,24 @@ "title": "Electronic Health Information Export" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 1, @@ -62290,29 +62275,29 @@ "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -62320,32 +62305,27 @@ "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": 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://www.qsmartcare.com/api-documentation.html" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "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.qsmartcare.com/api-documentation.html" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "criterion": { @@ -62353,19 +62333,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir.myqone.com/Endpoints", + "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", "softwareProducts": [ { - "id": 10709, - "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", + "id": 10803, + "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", "edition": { "id": 3, "name": "2015" @@ -62375,42 +62355,52 @@ "name": "" }, "developer": { - "id": 1615, - "name": "TRIARQ Practice Services" + "id": 2099, + "name": "Magilen Enterprises Inc" }, "product": { - "id": 2816, - "name": "QSuite" + "id": 3604, + "name": "QSmartCare" }, "version": { - "id": 7113, - "name": "Manistee" + "id": 8432, + "name": "1.0" }, - "certificationDate": "2021-11-05", + "certificationDate": "2022-01-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 54, @@ -62418,54 +62408,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 182, @@ -62473,144 +62463,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -62618,37 +62553,37 @@ "title": "Transmission to Immunization Registries" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.myqone.com" + "value": "https://www.qsmartcare.com/api-documentation.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://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { @@ -62656,7 +62591,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://www.qsmartcare.com/api-documentation.html" } ], "acb": "SLI Compliance" @@ -62664,11 +62599,11 @@ ] }, { - "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", + "listSourceURL": "https://fhir.myqone.com/Endpoints", "softwareProducts": [ { - "id": 10903, - "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", + "id": 10709, + "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", "edition": { "id": 3, "name": "2015" @@ -62678,92 +62613,97 @@ "name": "" }, "developer": { - "id": 1929, - "name": "Quest Diagnostics Incorporated" + "id": 1615, + "name": "TRIARQ Practice Services" }, "product": { - "id": 2787, - "name": "Quanum EHR" + "id": 2816, + "name": "QSuite" }, "version": { - "id": 8501, - "name": "2021" + "id": 7113, + "name": "Manistee" }, - "certificationDate": "2022-05-24", + "certificationDate": "2021-11-05", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -62771,84 +62711,134 @@ "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 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" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, @@ -62856,47 +62846,47 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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" } ], "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.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://fhir.myqone.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://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" }, { "criterion": { @@ -62904,19 +62894,19 @@ "number": "170.315 (g)(9)", "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://apiservices.triarqclouds.com/api/APIDocumentation.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", + "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", "softwareProducts": [ { - "id": 10253, - "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", + "id": 10903, + "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", "edition": { "id": 3, "name": "2015" @@ -62926,77 +62916,47 @@ "name": "" }, "developer": { - "id": 1913, - "name": "Radysans, Inc" + "id": 1929, + "name": "Quest Diagnostics Incorporated" }, "product": { - "id": 3415, - "name": "Radysans EHR" + "id": 2787, + "name": "Quanum EHR" }, "version": { - "id": 7987, - "name": "5.0" + "id": 8501, + "name": "2021" }, - "certificationDate": "2019-12-31", + "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": 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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 35, @@ -63009,69 +62969,39 @@ "title": "Audit Report(s)" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "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": 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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 12, @@ -63079,34 +63009,49 @@ "title": "Family Health History" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 29, @@ -63114,39 +63059,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 181, @@ -63154,9 +63099,24 @@ "title": "Application Access - All Data Request" }, { - "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": 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" } ], "apiDocumentation": [ @@ -63166,7 +63126,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" }, { "criterion": { @@ -63174,7 +63134,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" }, { "criterion": { @@ -63182,7 +63142,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" } ], "acb": "Drummond Group" @@ -63190,11 +63150,11 @@ ] }, { - "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", + "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", "softwareProducts": [ { - "id": 11024, - "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", + "id": 10253, + "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", "edition": { "id": 3, "name": "2015" @@ -63204,18 +63164,18 @@ "name": "" }, "developer": { - "id": 1991, - "name": "ReLi Med Solutions, LLC" + "id": 1913, + "name": "Radysans, Inc" }, "product": { - "id": 3422, - "name": "ReLiMed EMR" + "id": 3415, + "name": "Radysans EHR" }, "version": { - "id": 8615, - "name": "Version 7.3" + "id": 7987, + "name": "5.0" }, - "certificationDate": "2022-11-18", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" @@ -63232,34 +63192,34 @@ "title": "Patient Health Information Capture" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 4, @@ -63267,9 +63227,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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, @@ -63277,54 +63247,54 @@ "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": 54, - "number": "170.315 (g)(5)", - "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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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, @@ -63332,14 +63302,19 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 25, @@ -63347,19 +63322,24 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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, @@ -63367,9 +63347,9 @@ "title": "Implantable Device List" }, { - "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": 1, @@ -63377,54 +63357,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { @@ -63432,15 +63412,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "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" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" } ], "acb": "Drummond Group" @@ -63448,11 +63428,11 @@ ] }, { - "listSourceURL": "https://www.ihs.gov/cis/", + "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", "softwareProducts": [ { - "id": 10848, - "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", + "id": 11024, + "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", "edition": { "id": 3, "name": "2015" @@ -63462,42 +63442,52 @@ "name": "" }, "developer": { - "id": 674, - "name": "Indian Health Service" + "id": 1991, + "name": "ReLi Med Solutions, LLC" }, "product": { - "id": 1033, - "name": "Resource and Patient Management System Electronic Health Record" + "id": 3422, + "name": "ReLiMed EMR" }, "version": { - "id": 8380, - "name": "BCERv7.0" + "id": 8615, + "name": "Version 7.3" }, - "certificationDate": "2022-03-02", + "certificationDate": "2022-11-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 59, @@ -63505,44 +63495,39 @@ "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 1, @@ -63550,74 +63535,64 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -63625,9 +63600,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 52, @@ -63635,59 +63610,44 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -63696,13 +63656,21 @@ } ], "apiDocumentation": [ + { + "criterion": { + "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" + }, { "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" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { @@ -63710,27 +63678,19 @@ "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" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.ihs.gov/cis/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", + "listSourceURL": "https://www.ihs.gov/cis/", "softwareProducts": [ { - "id": 9923, - "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", + "id": 10848, + "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", "edition": { "id": 3, "name": "2015" @@ -63740,57 +63700,57 @@ "name": "" }, "developer": { - "id": 592, - "name": "Health Innovation Technologies, Inc." + "id": 674, + "name": "Indian Health Service" }, "product": { - "id": 3423, - "name": "RevolutionEHR" + "id": 1033, + "name": "Resource and Patient Management System Electronic Health Record" }, "version": { - "id": 7694, - "name": "7" + "id": 8380, + "name": "BCERv7.0" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-03-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 178, @@ -63798,9 +63758,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 171, @@ -63808,74 +63783,79 @@ "title": "Electronic Health Information Export" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -63883,19 +63863,29 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 1, @@ -63903,34 +63893,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" } ], "apiDocumentation": [ @@ -63940,35 +63940,35 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.ihs.gov/cis/" }, { "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.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + "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": 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://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "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.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", + "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10770, - "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", + "id": 9923, + "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -63978,72 +63978,52 @@ "name": "" }, "developer": { - "id": 1846, - "name": "Royal Health, Inc." + "id": 592, + "name": "Health Innovation Technologies, Inc." }, "product": { - "id": 3424, - "name": "Royal Solutions" + "id": 3423, + "name": "RevolutionEHR" }, "version": { - "id": 8424, - "name": "5" + "id": 7694, + "name": "7" }, - "certificationDate": "2021-12-29", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -64051,24 +64031,14 @@ "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -64081,107 +64051,142 @@ "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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" } ], "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://revolutionehrdev.dynamicfhir.com/dhit/basepractice/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://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" }, { "criterion": { @@ -64189,7 +64194,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -64197,11 +64202,11 @@ ] }, { - "listSourceURL": "https://dataapi.sequelmed.com", + "listSourceURL": "https://www.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", "softwareProducts": [ { - "id": 11143, - "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", + "id": 10770, + "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", "edition": { "id": 3, "name": "2015" @@ -64211,62 +64216,47 @@ "name": "" }, "developer": { - "id": 1847, - "name": "Sequel Systems, Inc." + "id": 1846, + "name": "Royal Health, Inc." }, "product": { - "id": 2126, - "name": "SequelMed EHR" + "id": 3424, + "name": "Royal Solutions" }, "version": { - "id": 7973, - "name": "V12" + "id": 8424, + "name": "5" }, - "certificationDate": "2022-12-27", + "certificationDate": "2021-12-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 52, @@ -64274,54 +64264,59 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -64329,64 +64324,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 174, - "number": "170.315 (d)(3)", - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -64394,42 +64394,32 @@ "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": 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": 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": 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://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" }, { "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://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" }, { "criterion": { @@ -64437,7 +64427,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -64445,11 +64435,11 @@ ] }, { - "listSourceURL": "https://genensys.com/api/", + "listSourceURL": "https://dataapi.sequelmed.com", "softwareProducts": [ { - "id": 10317, - "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", + "id": 11143, + "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -64459,42 +64449,37 @@ "name": "" }, "developer": { - "id": 524, - "name": "Genensys LLC" + "id": 1847, + "name": "Sequel Systems, Inc." }, "product": { - "id": 805, - "name": "Simplify EMR" + "id": 2126, + "name": "SequelMed EHR" }, "version": { - "id": 8046, - "name": "4.0" + "id": 7973, + "name": "V12" }, - "certificationDate": "2020-02-25", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 14, @@ -64502,59 +64487,49 @@ "title": "Implantable Device List" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -64562,54 +64537,59 @@ "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -64617,29 +64597,24 @@ "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -64647,49 +64622,52 @@ "title": "Emergency Access" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://genensys.com/api/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" }, { "criterion": { @@ -64697,27 +64675,19 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://genensys.com/api/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://genensys.com/api/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "listSourceURL": "https://genensys.com/api/", "softwareProducts": [ { - "id": 10987, - "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", + "id": 10317, + "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", "edition": { "id": 3, "name": "2015" @@ -64727,27 +64697,37 @@ "name": "" }, "developer": { - "id": 1856, - "name": "Streamline Healthcare Solutions" + "id": 524, + "name": "Genensys LLC" }, "product": { - "id": 2222, - "name": "SmartCare" + "id": 805, + "name": "Simplify EMR" }, "version": { - "id": 8580, - "name": "R6" + "id": 8046, + "name": "4.0" }, - "certificationDate": "2022-09-15", + "certificationDate": "2020-02-25", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 4, @@ -64755,34 +64735,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, @@ -64790,54 +64775,44 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 178, @@ -64845,9 +64820,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -64855,44 +64835,24 @@ "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 9, @@ -64900,74 +64860,74 @@ "title": "Clinical Decision Support" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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)" } ], "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://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://genensys.com/api/" }, { "criterion": { @@ -64975,22 +64935,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + "value": "https://genensys.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://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://genensys.com/api/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 9303, - "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", + "id": 10987, + "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -65008,44 +64973,39 @@ "name": "SmartCare" }, "version": { - "id": 7204, - "name": "5.0" + "id": 8580, + "name": "R6" }, - "certificationDate": "2017-12-31", + "certificationDate": "2022-09-15", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ + { + "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, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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, @@ -65053,24 +65013,9 @@ "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 14, @@ -65078,69 +65023,69 @@ "title": "Implantable Device List" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -65148,29 +65093,39 @@ "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 29, @@ -65178,59 +65133,69 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -65260,15 +65225,10 @@ } ], "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", + "id": 9303, + "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", "edition": { "id": 3, "name": "2015" @@ -65278,42 +65238,182 @@ "name": "" }, "developer": { - "id": 2130, - "name": "SmileCDR" + "id": 1856, + "name": "Streamline Healthcare Solutions" }, "product": { - "id": 3660, - "name": "Smile CDR" + "id": 2222, + "name": "SmartCare" }, "version": { - "id": 8637, - "name": "2022.11.PRE-35" + "id": 7204, + "name": "5.0" }, - "certificationDate": "2022-12-07", + "certificationDate": "2017-12-31", "certificationStatus": { "id": 3, "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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": 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": 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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 176, @@ -65321,9 +65421,19 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 37, @@ -65331,14 +65441,34 @@ "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": 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": 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" } ], "apiDocumentation": [ @@ -65348,7 +65478,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" }, { "criterion": { @@ -65356,14 +65486,27 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/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" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", + "softwareProducts": [ { - "id": 11368, - "chplProductNumber": "15.04.04.3129.Smil.03.01.0.231117", + "id": 11051, + "chplProductNumber": "15.04.04.3129.Smil.02.00.0.221207", "edition": { "id": 3, "name": "2015" @@ -65381,19 +65524,19 @@ "name": "Smile CDR" }, "version": { - "id": 8879, - "name": "2023" + "id": 8637, + "name": "2022.11.PRE-35" }, - "certificationDate": "2023-11-17", + "certificationDate": "2022-12-07", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "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": 37, @@ -65401,14 +65544,14 @@ "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": 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": 176, @@ -65416,29 +65559,124 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 29, + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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://cms.smilecdr.com/fhir-request/api-docs" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "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": 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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "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" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -65496,134 +65734,134 @@ }, "criteriaMet": [ { - "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": 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" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 59, @@ -65631,24 +65869,24 @@ "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 48, @@ -65656,55 +65894,55 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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://fhir.cerner.com/soarian/overview/" }, { "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.cerner.com/soarian/overview/" }, @@ -65753,40 +65991,15 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, @@ -65794,9 +66007,9 @@ "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": 36, @@ -65804,54 +66017,54 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 175, @@ -65859,29 +66072,24 @@ "title": "Auditing Actions on Health Information" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 174, @@ -65889,24 +66097,19 @@ "title": "Audit Report(s)" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -65914,39 +66117,64 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 181, @@ -65954,9 +66182,19 @@ "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": 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" } ], "apiDocumentation": [ @@ -65970,17 +66208,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://solidpractice.com/cost-limitation.php" }, { "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://solidpractice.com/cost-limitation.php" } @@ -66021,6 +66259,31 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 173, "number": "170.315 (d)(2)", @@ -66032,54 +66295,44 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "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": 182, @@ -66087,45 +66340,22 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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://api-docs.practicegateway.net" - }, { "criterion": { "id": 56, @@ -66141,6 +66371,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://api-docs.practicegateway.net" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api-docs.practicegateway.net" } ], "acb": "Drummond Group" @@ -66180,19 +66418,14 @@ }, "criteriaMet": [ { - "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": 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": 176, @@ -66200,14 +66433,9 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 8, @@ -66215,94 +66443,89 @@ "title": "Medication Allergy List" }, { - "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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, @@ -66310,34 +66533,34 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -66345,25 +66568,40 @@ "title": "CPOE - Laboratory" }, { - "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": 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" } ], "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.correctek.com/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://www.correctek.com/cost-disclosure-and-transparency/" }, @@ -66413,44 +66651,49 @@ }, "criteriaMet": [ { - "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, - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 36, @@ -66458,24 +66701,19 @@ "title": "Integrity" }, { - "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": 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": 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, @@ -66483,29 +66721,9 @@ "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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 180, @@ -66513,19 +66731,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 29, @@ -66533,9 +66746,19 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, @@ -66543,39 +66766,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -66641,19 +66879,19 @@ }, "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 174, @@ -66661,44 +66899,39 @@ "title": "Audit Report(s)" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -66706,24 +66939,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -66731,9 +66959,9 @@ "title": "Application Access - Patient Selection" }, { - "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": 26, @@ -66741,24 +66969,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 53, @@ -66766,14 +66999,14 @@ "title": "Quality Management System" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -66781,75 +67014,80 @@ "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" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://patientportal.streamlinemd.com/FHIRAPI" }, { "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://patientportal.streamlinemd.com/FHIRAPI" }, @@ -66899,34 +67137,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 9, @@ -66934,14 +67182,19 @@ "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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, @@ -66949,19 +67202,24 @@ "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 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": 174, @@ -66969,74 +67227,49 @@ "title": "Audit Report(s)" }, { - "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": 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": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 44, @@ -67044,29 +67277,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 25, @@ -67074,24 +67297,29 @@ "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -67099,9 +67327,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -67115,17 +67353,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.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://www.systemedx.com/API/APIIntro.html" } @@ -67172,65 +67410,65 @@ "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": 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": 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": 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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 179, "number": "170.315 (f)(5)", @@ -67242,29 +67480,34 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 166, @@ -67272,87 +67515,82 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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" } ], "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://wiki.traknetsolutions.com/traknet-open-api" }, @@ -67366,9 +67604,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": "http://wiki.traknetsolutions.com/traknet-open-api" } @@ -67410,34 +67648,29 @@ }, "criteriaMet": [ { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 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": 177, @@ -67445,14 +67678,9 @@ "title": "Multi-Factor Authentication" }, { - "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": 5, @@ -67460,14 +67688,14 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -67475,120 +67703,122 @@ "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": 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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, { "criterion": { "id": 182, @@ -67604,6 +67834,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67642,40 +67880,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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, @@ -67683,9 +67896,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 14, @@ -67693,34 +67906,34 @@ "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": 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": 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" + "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": 178, @@ -67728,14 +67941,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 4, @@ -67748,19 +67971,19 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 42, @@ -67768,9 +67991,9 @@ "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": 174, @@ -67778,9 +68001,9 @@ "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": 173, @@ -67788,14 +68011,14 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -67803,22 +68026,37 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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" + }, + { + "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.kareo.com/macra-mips" }, @@ -67832,9 +68070,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.kareo.com/macra-mips" } @@ -67875,50 +68113,30 @@ "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": 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)" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -67931,64 +68149,79 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 177, @@ -67996,45 +68229,42 @@ "title": "Multi-Factor Authentication" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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://devportal.techcareehr.com/Terms" - }, { "criterion": { "id": 181, @@ -68050,6 +68280,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://devportal.techcareehr.com/Terms" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://devportal.techcareehr.com/Terms" } ], "acb": "Drummond Group" @@ -68089,24 +68327,24 @@ }, "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 165, @@ -68114,79 +68352,74 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, @@ -68194,9 +68427,14 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 9, @@ -68204,49 +68442,44 @@ "title": "Clinical Decision Support" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 175, @@ -68254,85 +68487,82 @@ "title": "Auditing Actions on Health Information" }, { - "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": 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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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" - }, - "value": "https://tenzing.docs.apiary.io/#" - }, { "criterion": { "id": 182, @@ -68348,6 +68578,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://tenzing.docs.apiary.io/#" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://tenzing.docs.apiary.io/#" } ], "acb": "SLI Compliance" @@ -68387,44 +68625,34 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -68432,39 +68660,44 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 20, @@ -68472,74 +68705,79 @@ "title": "Common Clinical Data Set Summary Record - Receive" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 7, @@ -68547,14 +68785,9 @@ "title": "Medication List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 59, @@ -68562,9 +68795,14 @@ "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 25, @@ -68572,44 +68810,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 43, @@ -68617,59 +68860,54 @@ "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" }, { "criterion": { @@ -68681,11 +68919,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": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" } ], "acb": "SLI Compliance" @@ -68724,11 +68962,66 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "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": 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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 33, "number": "170.315 (d)(5)", @@ -68740,64 +69033,201 @@ "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" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://usmon.com/USMON-SmartOnFHIR-API.pdf" + } + ], + "acb": "Leidos" + } + ] + }, + { + "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", + "softwareProducts": [ + { + "id": 10824, + "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2085, + "name": "Landmark Health, LLC" + }, + "product": { + "id": 3574, + "name": "Ubiquity" + }, + "version": { + "id": 8445, + "name": "1.2" + }, + "certificationDate": "2022-02-04", + "certificationStatus": { + "id": 1, + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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": 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, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -68807,19 +69237,35 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://usmon.com/USMON-SmartOnFHIR-API.pdf" + "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" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], - "acb": "Leidos" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", + "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", "softwareProducts": [ { - "id": 10824, - "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", + "id": 9333, + "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", "edition": { "id": 3, "name": "2015" @@ -68829,32 +69275,32 @@ "name": "" }, "developer": { - "id": 2085, - "name": "Landmark Health, LLC" + "id": 1479, + "name": "Universal EHR, Inc." }, "product": { - "id": 3574, - "name": "Ubiquity" + "id": 3459, + "name": "Universal EHR" }, "version": { - "id": 8445, - "name": "1.2" + "id": 7231, + "name": "2.0.0" }, - "certificationDate": "2022-02-04", + "certificationDate": "2018-03-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -68862,19 +69308,24 @@ "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, @@ -68882,9 +69333,14 @@ "title": "Electronic Health Information Export" }, { - "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": 174, @@ -68892,29 +69348,79 @@ "title": "Audit Report(s)" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 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": 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, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -68922,24 +69428,19 @@ "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -68947,9 +69448,9 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -68957,49 +69458,44 @@ "title": "CPOE - Laboratory" }, { - "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" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 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://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" }, { "criterion": { @@ -69007,15 +69503,15 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://www.interopengine.com/2017/open-api-documentation.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://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -69023,11 +69519,11 @@ ] }, { - "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", + "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 9333, - "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", + "id": 11069, + "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", "edition": { "id": 3, "name": "2015" @@ -69037,37 +69533,37 @@ "name": "" }, "developer": { - "id": 1479, - "name": "Universal EHR, Inc." + "id": 1515, + "name": "VisionWeb" }, "product": { - "id": 3459, - "name": "Universal EHR" + "id": 2414, + "name": "Uprise" }, "version": { - "id": 7231, - "name": "2.0.0" + "id": 7534, + "name": "3.1" }, - "certificationDate": "2018-03-12", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 166, @@ -69075,104 +69571,94 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 3, @@ -69180,14 +69666,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -69195,19 +69676,9 @@ "title": "Electronic Prescribing" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 29, @@ -69220,9 +69691,24 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -69230,24 +69716,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -69257,7 +69748,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -69265,7 +69756,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -69273,7 +69764,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -69281,11 +69772,11 @@ ] }, { - "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", + "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", "softwareProducts": [ { - "id": 11069, - "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", + "id": 9887, + "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", "edition": { "id": 3, "name": "2015" @@ -69295,92 +69786,97 @@ "name": "" }, "developer": { - "id": 1515, - "name": "VisionWeb" + "id": 1876, + "name": "Vohra Wound Physicians Management, LLC" }, "product": { - "id": 2414, - "name": "Uprise" + "id": 3465, + "name": "VHS Medical Documentation \u0026 Coding" }, "version": { - "id": 7534, - "name": "3.1" + "id": 7660, + "name": "3.5" }, - "certificationDate": "2022-12-13", + "certificationDate": "2018-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "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": 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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, @@ -69388,94 +69884,84 @@ "title": "Audit Report(s)" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -69483,34 +69969,39 @@ "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "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": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { @@ -69518,15 +70009,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" } ], "acb": "Drummond Group" @@ -69534,11 +70025,11 @@ ] }, { - "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", + "listSourceURL": "https://fhir.allegiancemd.io/R4/", "softwareProducts": [ { - "id": 9887, - "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", + "id": 10794, + "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", "edition": { "id": 3, "name": "2015" @@ -69548,67 +70039,67 @@ "name": "" }, "developer": { - "id": 1876, - "name": "Vohra Wound Physicians Management, LLC" + "id": 1673, + "name": "AllegianceMD Software, Inc." }, "product": { - "id": 3465, - "name": "VHS Medical Documentation \u0026 Coding" + "id": 3463, + "name": "Veracity" }, "version": { - "id": 7660, - "name": "3.5" + "id": 7899, + "name": "9.1" }, - "certificationDate": "2018-12-21", + "certificationDate": "2022-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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)" }, { - "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": 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": 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": 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" }, { "id": 53, @@ -69616,9 +70107,39 @@ "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": 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": 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": 33, @@ -69626,14 +70147,19 @@ "title": "Automatic Access Time-out" }, { - "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 178, @@ -69641,29 +70167,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 35, @@ -69671,99 +70197,74 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://allegiancemd.com/fhir-api-documentation" }, { "criterion": { @@ -69771,27 +70272,27 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://allegiancemd.com/developer-guide-api-help/" }, { "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://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://allegiancemd.com/developer-guide-api-help/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.allegiancemd.io/R4/", + "listSourceURL": "https://open.platform.veradigm.com/fhirendpoints", "softwareProducts": [ { - "id": 10794, - "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", + "id": 11009, + "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", "edition": { "id": 3, "name": "2015" @@ -69801,72 +70302,42 @@ "name": "" }, "developer": { - "id": 1673, - "name": "AllegianceMD Software, Inc." + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3463, - "name": "Veracity" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7899, - "name": "9.1" + "id": 8603, + "name": "22.2" }, - "certificationDate": "2022-01-17", + "certificationDate": "2022-10-25", "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": 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": 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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 176, @@ -69874,19 +70345,19 @@ "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": 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" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -69894,54 +70365,64 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 167, @@ -69949,84 +70430,134 @@ "title": "Electronic Prescribing" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 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": 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": 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, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://allegiancemd.com/developer-guide-api-help/" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -70034,27 +70565,22 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://allegiancemd.com/fhir-api-documentation" + "value": "https://developer.veradigm.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://allegiancemd.com/developer-guide-api-help/" + "value": "https://developer.veradigm.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://open.platform.veradigm.com/fhirendpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11009, - "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", + "id": 11289, + "chplProductNumber": "15.04.04.2891.Alls.VE.09.0.230531", "edition": { "id": 3, "name": "2015" @@ -70072,39 +70598,44 @@ "name": "Veradigm EHR" }, "version": { - "id": 8603, - "name": "22.2" + "id": 8806, + "name": "23.1" }, - "certificationDate": "2022-10-25", + "certificationDate": "2023-05-31", "certificationStatus": { "id": 3, "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 44, @@ -70112,24 +70643,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -70137,49 +70663,54 @@ "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -70187,29 +70718,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 179, @@ -70217,24 +70748,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 180, @@ -70242,24 +70768,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 37, @@ -70267,65 +70803,55 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" } ], "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.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/" }, @@ -70341,8 +70867,8 @@ "acb": "Drummond Group" }, { - "id": 11289, - "chplProductNumber": "15.04.04.2891.Alls.VE.09.0.230531", + "id": 11379, + "chplProductNumber": "15.04.04.2891.Vera.23.10.0.231128", "edition": { "id": 3, "name": "2015" @@ -70360,64 +70886,39 @@ "name": "Veradigm EHR" }, "version": { - "id": 8806, - "name": "23.1" + "id": 8890, + "name": "23.3" }, - "certificationDate": "2023-05-31", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 3, "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -70425,19 +70926,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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" }, { - "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": 3, @@ -70445,24 +70946,29 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -70470,39 +70976,39 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 34, @@ -70510,59 +71016,79 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 169, @@ -70570,42 +71096,42 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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://developer.veradigm.com/" }, @@ -70619,9 +71145,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://developer.veradigm.com/" } @@ -70629,8 +71155,8 @@ "acb": "Drummond Group" }, { - "id": 11379, - "chplProductNumber": "15.04.04.2891.Vera.23.10.0.231128", + "id": 11380, + "chplProductNumber": "15.04.04.2891.Vera.23.11.0.231128", "edition": { "id": 3, "name": "2015" @@ -70648,34 +71174,39 @@ "name": "Veradigm EHR" }, "version": { - "id": 8890, - "name": "23.3" + "id": 8891, + "name": "23.4" }, "certificationDate": "2023-11-28", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 3, @@ -70687,20 +71218,20 @@ "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -70708,44 +71239,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 170, @@ -70753,64 +71254,34 @@ "title": "Care Plan" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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" + "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": 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": 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": 1, @@ -70823,24 +71294,24 @@ "title": "Transitions of Care" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device 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": 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": 42, @@ -70852,15 +71323,35 @@ "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": 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": 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": 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, @@ -70868,9 +71359,34 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 174, @@ -70878,14 +71394,24 @@ "title": "Audit Report(s)" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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" } ], "apiDocumentation": [ @@ -70915,10 +71441,15 @@ } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", + "softwareProducts": [ { - "id": 11380, - "chplProductNumber": "15.04.04.2891.Vera.23.11.0.231128", + "id": 10299, + "chplProductNumber": "15.07.04.2503.Vers.09.01.1.200210", "edition": { "id": 3, "name": "2015" @@ -70928,62 +71459,47 @@ "name": "" }, "developer": { - "id": 1892, - "name": "Veradigm" + "id": 1504, + "name": "VersaSuite" }, "product": { - "id": 3652, - "name": "Veradigm EHR" + "id": 2401, + "name": "VersaSuite" }, "version": { - "id": 8891, - "name": "23.4" + "id": 7948, + "name": "9.0" }, - "certificationDate": "2023-11-28", + "certificationDate": "2020-02-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 179, @@ -70991,64 +71507,64 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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, @@ -71056,29 +71572,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 54, @@ -71086,84 +71597,94 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 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": 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": 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, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 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": 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" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -71171,9 +71692,19 @@ "title": "Clinical Decision Support" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -71183,7 +71714,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://developer.veradigm.com/" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" }, { "criterion": { @@ -71191,7 +71722,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.veradigm.com/" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" }, { "criterion": { @@ -71199,7 +71730,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.veradigm.com/" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -71207,11 +71738,11 @@ ] }, { - "listSourceURL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", + "listSourceURL": "https://www.vision-works.com/cert/FHIR", "softwareProducts": [ { - "id": 10299, - "chplProductNumber": "15.07.04.2503.Vers.09.01.1.200210", + "id": 10954, + "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", "edition": { "id": 3, "name": "2015" @@ -71221,87 +71752,37 @@ "name": "" }, "developer": { - "id": 1504, - "name": "VersaSuite" + "id": 1940, + "name": "Vision Works, Inc." }, "product": { - "id": 2401, - "name": "VersaSuite" + "id": 2666, + "name": "Vision Works" }, "version": { - "id": 7948, - "name": "9.0" + "id": 7382, + "name": "10.0" }, - "certificationDate": "2020-02-10", + "certificationDate": "2022-08-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 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": 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": 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": 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": 180, @@ -71309,44 +71790,29 @@ "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 166, @@ -71354,14 +71820,14 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 37, @@ -71369,64 +71835,39 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 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": 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, @@ -71434,39 +71875,59 @@ "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": 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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -71476,7 +71937,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { @@ -71484,7 +71945,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { @@ -71492,7 +71953,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" } ], "acb": "Drummond Group" @@ -71500,11 +71961,11 @@ ] }, { - "listSourceURL": "https://www.vision-works.com/cert/FHIR", + "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10954, - "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", + "id": 9588, + "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", "edition": { "id": 3, "name": "2015" @@ -71514,52 +71975,47 @@ "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": 7410, + "name": "V6.0" }, - "certificationDate": "2022-08-08", + "certificationDate": "2018-05-08", "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": 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": 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" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 174, @@ -71567,19 +72023,19 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 1, @@ -71587,119 +72043,172 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + }, { "criterion": { "id": 56, "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": { @@ -71707,27 +72216,14 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "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" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", - "softwareProducts": [ + }, { - "id": 9588, - "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", + "id": 11388, + "chplProductNumber": "15.99.09.2526.WEBe.06.01.1.231204", "edition": { "id": 3, "name": "2015" @@ -71745,24 +72241,24 @@ "name": "WEBeDoctor Physician Office" }, "version": { - "id": 7410, - "name": "V6.0" + "id": 4393, + "name": "6.0" }, - "certificationDate": "2018-05-08", + "certificationDate": "2023-12-04", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 36, @@ -71770,44 +72266,39 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 9, @@ -71815,24 +72306,19 @@ "title": "Clinical Decision Support" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 52, @@ -71840,34 +72326,24 @@ "title": "Safety-Enhanced Design" }, { - "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" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 14, @@ -71875,14 +72351,14 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -71890,34 +72366,49 @@ "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -71925,42 +72416,42 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -71974,18 +72465,23 @@ }, { "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" } ], - "acb": "Drummond Group" - }, + "acb": "Leidos" + } + ] + }, + { + "listSourceURL": "https://api.fhir.wrs.cloud/docs", + "softwareProducts": [ { - "id": 11388, - "chplProductNumber": "15.99.09.2526.WEBe.06.01.1.231204", + "id": 10750, + "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", "edition": { "id": 3, "name": "2015" @@ -71995,57 +72491,72 @@ "name": "" }, "developer": { - "id": 1527, - "name": "WEBeDoctor, Inc." + "id": 1528, + "name": "WRS Health" }, "product": { - "id": 2433, - "name": "WEBeDoctor Physician Office" + "id": 2434, + "name": "WRS Health Web EHR and Practice Management System" }, "version": { - "id": 4393, - "name": "6.0" + "id": 7587, + "name": "7.0" }, - "certificationDate": "2023-12-04", + "certificationDate": "2021-12-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 166, @@ -72053,29 +72564,34 @@ "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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -72083,84 +72599,89 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 178, @@ -72168,62 +72689,72 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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" }, { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "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": 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://api.fhir.wrs.cloud/docs" }, { "criterion": { @@ -72231,19 +72762,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://api.wrshealth.com/api/docs/mu/index.html" } ], - "acb": "Leidos" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://api.fhir.wrs.cloud/docs", + "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", "softwareProducts": [ { - "id": 10750, - "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", + "id": 11022, + "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", "edition": { "id": 3, "name": "2015" @@ -72253,102 +72784,47 @@ "name": "" }, "developer": { - "id": 1528, - "name": "WRS Health" + "id": 933, + "name": "Medical Informatics Engineering" }, "product": { - "id": 2434, - "name": "WRS Health Web EHR and Practice Management System" + "id": 1480, + "name": "WebChart EHR" }, "version": { - "id": 7587, - "name": "7.0" + "id": 8613, + "name": "8.4" }, - "certificationDate": "2021-12-14", + "certificationDate": "2022-11-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 165, @@ -72356,79 +72832,74 @@ "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 4, @@ -72436,9 +72907,14 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -72446,49 +72922,54 @@ "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 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": 177, @@ -72496,9 +72977,54 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -72508,7 +73034,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { @@ -72516,7 +73042,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { @@ -72524,19 +73050,19 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.fhir.wrs.cloud/docs" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", + "listSourceURL": "https://fhir.qa.welligent.com/", "softwareProducts": [ { - "id": 11022, - "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", + "id": 10811, + "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", "edition": { "id": 3, "name": "2015" @@ -72546,62 +73072,62 @@ "name": "" }, "developer": { - "id": 933, - "name": "Medical Informatics Engineering" + "id": 1537, + "name": "Welligent, Part of the ContinuumCloud" }, "product": { - "id": 1480, - "name": "WebChart EHR" + "id": 2445, + "name": "Welligent" }, "version": { - "id": 8613, - "name": "8.4" + "id": 8034, + "name": "8MU3" }, - "certificationDate": "2022-11-17", + "certificationDate": "2022-02-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -72609,34 +73135,9 @@ "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 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, @@ -72644,39 +73145,9 @@ "title": "Transitions of Care" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "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, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -72684,9 +73155,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 182, @@ -72694,29 +73170,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -72724,87 +73200,47 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 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": 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/" + "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": 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/" + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, { "criterion": { @@ -72812,19 +73248,19 @@ "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://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.qa.welligent.com/", + "listSourceURL": "https://zoobooksystems.com/api-documentation/", "softwareProducts": [ { - "id": 10811, - "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", + "id": 9268, + "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", "edition": { "id": 3, "name": "2015" @@ -72834,32 +73270,42 @@ "name": "" }, "developer": { - "id": 1537, - "name": "Welligent, Part of the ContinuumCloud" + "id": 2009, + "name": "Zoobook Systems LLC" }, "product": { - "id": 2445, - "name": "Welligent" + "id": 2841, + "name": "Zoobook EHR" }, "version": { - "id": 8034, - "name": "8MU3" + "id": 7175, + "name": "2.0" }, - "certificationDate": "2022-02-01", + "certificationDate": "2017-12-31", "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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, @@ -72867,9 +73313,14 @@ "title": "Automatic Access Time-out" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 174, @@ -72877,74 +73328,79 @@ "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": 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": 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": 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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, @@ -72952,14 +73408,14 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 9, @@ -72967,42 +73423,42 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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" } ], "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" + "value": "https://zoobooksystems.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.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://zoobooksystems.com/disclosures/" }, { "criterion": { @@ -73010,19 +73466,19 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://zoobooksystems.com/api-documentation/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://zoobooksystems.com/api-documentation/", + "listSourceURL": "https://www.zoommd.com/zoommd-file-api-endpoints", "softwareProducts": [ { - "id": 9268, - "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", + "id": 11182, + "chplProductNumber": "15.04.04.1979.Zoom.41.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -73032,67 +73488,82 @@ "name": "" }, "developer": { - "id": 2009, - "name": "Zoobook Systems LLC" + "id": 980, + "name": "Metasolutions Inc" }, "product": { - "id": 2841, - "name": "Zoobook EHR" + "id": 1661, + "name": "ZoomMD" }, "version": { - "id": 7175, - "name": "2.0" + "id": 7081, + "name": "4.1" }, - "certificationDate": "2017-12-31", + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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" + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -73100,19 +73571,24 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -73120,9 +73596,29 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 56, @@ -73130,19 +73626,29 @@ "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": 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -73150,19 +73656,24 @@ "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": 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, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -73170,24 +73681,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, @@ -73195,24 +73696,32 @@ "title": "Transitions of Care" }, { - "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": 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://www.zoommd.com/zoommd-api" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://www.zoommd.com/zoommd-file-api-documentation" }, { "criterion": { @@ -73220,15 +73729,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://zoobooksystems.com/disclosures/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://www.zoommd.com/zoommd-api" } ], "acb": "Drummond Group" @@ -73268,14 +73769,19 @@ }, "criteriaMet": [ { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -73283,24 +73789,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 181, @@ -73308,49 +73814,54 @@ "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 36, @@ -73358,139 +73869,129 @@ "title": "Integrity" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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" }, { - "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": 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": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -73551,84 +74052,74 @@ }, "criteriaMet": [ { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 170, @@ -73636,44 +74127,39 @@ "title": "Care Plan" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, @@ -73681,19 +74167,14 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 49, @@ -73701,9 +74182,34 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 182, @@ -73711,64 +74217,59 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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, @@ -73777,6 +74278,14 @@ } ], "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": 182, @@ -73792,14 +74301,6 @@ "title": "Application Access - Patient Selection" }, "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" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -73834,59 +74335,49 @@ }, "criteriaMet": [ { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -73894,74 +74385,54 @@ "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" }, { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 1, @@ -73969,14 +74440,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 42, @@ -73984,67 +74460,92 @@ "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -74058,9 +74559,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://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -74097,109 +74598,109 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 178, @@ -74207,64 +74708,64 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 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": 35, @@ -74272,37 +74773,45 @@ "title": "End-User Device Encryption" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 56, @@ -74318,14 +74827,6 @@ "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,39 +74866,44 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, @@ -74405,89 +74911,69 @@ "title": "Family Health History" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 173, @@ -74495,19 +74981,19 @@ "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 35, @@ -74515,39 +75001,49 @@ "title": "End-User Device Encryption" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 14, @@ -74555,40 +75051,45 @@ "title": "Implantable Device List" }, { - "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" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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://mydata.athenahealth.com/home" }, { "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" }, @@ -74633,64 +75134,64 @@ }, "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -74698,39 +75199,44 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 37, @@ -74738,69 +75244,69 @@ "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 39, @@ -74808,44 +75314,39 @@ "title": "Accounting of Disclosures" }, { - "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": 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": 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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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" } ], "apiDocumentation": [ @@ -74859,17 +75360,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://mydata.athenahealth.com/home" }, { "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" } @@ -74905,45 +75406,65 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 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": 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": 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": 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": 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, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -74951,9 +75472,9 @@ "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": 33, @@ -74961,64 +75482,54 @@ "title": "Automatic Access Time-out" }, { - "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, - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -75026,79 +75537,74 @@ "title": "Family Health History" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -75106,19 +75612,14 @@ "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -75179,144 +75680,144 @@ }, "criteriaMet": [ { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 56, - "number": "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -75324,9 +75825,14 @@ "title": "Electronic Prescribing" }, { - "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -75334,67 +75840,70 @@ "title": "Audit Report(s)" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75410,14 +75919,6 @@ "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -75457,9 +75958,9 @@ }, "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": 167, @@ -75467,9 +75968,14 @@ "title": "Electronic Prescribing" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 4, @@ -75477,134 +75983,134 @@ "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -75612,60 +76118,47 @@ "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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, + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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://drchrono-fhirpresentation.everhealthsoftware.com/drchrono/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -75681,6 +76174,14 @@ "title": "Application Access - All Data Request" }, "value": "https://drchrono.com/api-docs/v4/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://drchrono-fhirpresentation.everhealthsoftware.com/drchrono/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -75720,39 +76221,34 @@ }, "criteriaMet": [ { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 56, - "number": "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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, @@ -75760,24 +76256,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 7, @@ -75785,14 +76291,14 @@ "title": "Medication List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem 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": 32, @@ -75800,24 +76306,29 @@ "title": "Amendments" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -75825,49 +76336,44 @@ "title": "Demographics" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 10, @@ -75875,19 +76381,14 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 177, @@ -75895,60 +76396,52 @@ "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 182, @@ -75957,6 +76450,14 @@ }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 56, @@ -76003,19 +76504,24 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -76023,24 +76529,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -76048,54 +76549,64 @@ "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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" }, { - "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": 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": 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": 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" }, { "id": 53, @@ -76103,29 +76614,44 @@ "title": "Quality Management System" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 59, @@ -76133,24 +76659,19 @@ "title": "Direct Project" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -76158,9 +76679,9 @@ "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": 14, @@ -76168,75 +76689,47 @@ "title": "Implantable Device List" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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://ipatientcare.com/onc-acb-certified-2015-edition/" - }, { "criterion": { "id": 56, @@ -76252,6 +76745,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -76291,34 +76792,44 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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, + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 52, @@ -76326,19 +76837,24 @@ "title": "Safety-Enhanced Design" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 49, @@ -76346,109 +76862,74 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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, "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -76456,9 +76937,29 @@ "title": "Family Health History" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -76466,55 +76967,47 @@ "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": 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" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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://fhir.eclinicalworks.com" - }, { "criterion": { "id": 182, @@ -76530,6 +77023,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhir.eclinicalworks.com" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" @@ -76564,24 +77065,14 @@ }, "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, @@ -76589,39 +77080,44 @@ "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": 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" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 53, @@ -76629,14 +77125,34 @@ "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 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, @@ -76644,54 +77160,64 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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)" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 56, @@ -76699,14 +77225,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -76719,64 +77255,29 @@ "title": "Transmission to Immunization Registries" }, { - "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" }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -76837,49 +77338,49 @@ }, "criteriaMet": [ { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -76887,49 +77388,39 @@ "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 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": 43, @@ -76937,29 +77428,29 @@ "title": "Transmission to Immunization Registries" }, { - "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" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 166, @@ -76967,54 +77458,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -77022,34 +77513,44 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -77120,9 +77621,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 25, @@ -77130,9 +77631,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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, @@ -77140,89 +77656,79 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -77230,9 +77736,9 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -77240,27 +77746,30 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" + }, { "criterion": { "id": 182, @@ -77276,14 +77785,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.edermehr.com/ederm-onc-certified" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77323,19 +77824,14 @@ }, "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -77343,19 +77839,24 @@ "title": "Patient Health Information Capture" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 1, @@ -77363,29 +77864,44 @@ "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" }, { - "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 180, @@ -77398,29 +77914,29 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -77428,20 +77944,35 @@ "title": "Integrity" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 181, "number": "170.315 (g)(9)", @@ -77453,24 +77984,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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, @@ -77478,52 +78009,22 @@ "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": 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": 32, - "number": "170.315 (d)(4)", - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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://mu2014-stage.ehana.com/apidocs" }, @@ -77537,9 +78038,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://mu2014-stage.ehana.com/apidocs" } @@ -77581,44 +78082,49 @@ }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 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": 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": 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": 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": 2, @@ -77626,84 +78132,79 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 178, @@ -77711,29 +78212,14 @@ "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -77741,9 +78227,14 @@ "title": "Application Access - All Data Request" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 171, @@ -77751,54 +78242,64 @@ "title": "Electronic Health Information Export" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" }, { "criterion": { @@ -77810,11 +78311,11 @@ }, { "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://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" } ], "acb": "SLI Compliance" @@ -77854,109 +78355,104 @@ }, "criteriaMet": [ { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "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": 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": 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": 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": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -77964,24 +78460,24 @@ "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" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -77989,20 +78485,17 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" - }, { "criterion": { "id": 181, @@ -78018,6 +78511,14 @@ "title": "Application Access - Patient Selection" }, "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" + }, + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } ], "acb": "Drummond Group" @@ -78057,39 +78558,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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, @@ -78097,109 +78603,109 @@ "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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" + "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": 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": 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": 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": 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": 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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 3, @@ -78207,14 +78713,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -78222,29 +78733,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 5, @@ -78252,20 +78753,12 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78274,6 +78767,14 @@ }, "value": "http://interopengine.com/2017/open-api-documentation.html" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" + }, { "criterion": { "id": 182, @@ -78315,24 +78816,14 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 167, @@ -78340,14 +78831,14 @@ "title": "Electronic Prescribing" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 15, @@ -78355,49 +78846,49 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, @@ -78405,19 +78896,19 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -78425,24 +78916,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -78455,64 +78951,69 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 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" } ], "apiDocumentation": [ @@ -78526,17 +79027,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://dexter-solutions.com/certification" }, { "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://dexter-solutions.com/certification" } @@ -78578,54 +79079,49 @@ }, "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 176, @@ -78633,39 +79129,44 @@ "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": 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": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -78731,24 +79232,19 @@ }, "criteriaMet": [ { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -78756,14 +79252,29 @@ "title": "Accessibility-Centered 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -78771,24 +79282,24 @@ "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" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -78796,24 +79307,24 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 53, @@ -78821,24 +79332,19 @@ "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": 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": 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" }, { "id": 32, @@ -78846,29 +79352,19 @@ "title": "Amendments" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -78876,19 +79372,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 170, @@ -78896,24 +79387,29 @@ "title": "Care Plan" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 2, @@ -78921,44 +79417,44 @@ "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 20, @@ -78966,19 +79462,24 @@ "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "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": 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" }, { "criterion": { @@ -78990,11 +79491,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": "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" } ], "acb": "SLI Compliance" @@ -79002,7 +79503,7 @@ ] }, { - "listSourceURL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", + "listSourceURL": "https://fhir.10e11.com/", "softwareProducts": [ { "id": 11200, @@ -79034,19 +79535,34 @@ }, "criteriaMet": [ { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 170, @@ -79054,79 +79570,79 @@ "title": "Care Plan" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 179, @@ -79134,24 +79650,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 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" }, { "id": 15, @@ -79159,19 +79670,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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, @@ -79179,64 +79680,69 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -79247,11 +79753,6 @@ "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" } ], "apiDocumentation": [ @@ -79265,17 +79766,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://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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -79317,79 +79818,69 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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, @@ -79397,24 +79888,9 @@ "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": 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": 178, @@ -79427,34 +79903,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 12, @@ -79462,19 +79938,14 @@ "title": "Family Health History" }, { - "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": 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, @@ -79482,9 +79953,19 @@ "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 169, @@ -79492,29 +79973,34 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, @@ -79527,20 +80013,27 @@ "title": "Automated Measure Calculation" }, { - "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": 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": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, { "criterion": { "id": 182, @@ -79556,6 +80049,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.interopengine.com/open-api-documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -79595,34 +80096,44 @@ }, "criteriaMet": [ { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 177, @@ -79630,39 +80141,64 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 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": 176, @@ -79670,39 +80206,34 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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": 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": 12, @@ -79710,14 +80241,14 @@ "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -79725,49 +80256,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -79779,14 +80280,6 @@ }, "value": "https://www.lillegroup.com/esh.html" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" - }, { "criterion": { "id": 181, @@ -79794,6 +80287,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" } ], "acb": "SLI Compliance" @@ -79833,34 +80334,34 @@ }, "criteriaMet": [ { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 11, @@ -79868,29 +80369,34 @@ "title": "Smoking Status" }, { - "id": 5, - "number": "170.315 (a)(5)", - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -79898,79 +80404,79 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "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": 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": 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": 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": 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" }, { "id": 12, @@ -79978,19 +80484,29 @@ "title": "Family Health History" }, { - "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": 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": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 25, @@ -79998,14 +80514,9 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -80013,29 +80524,19 @@ "title": "Safety-Enhanced Design" }, { - "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, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 20, @@ -80043,39 +80544,39 @@ "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -80094,17 +80595,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.ethizo.com/pda-api/developer-guide/" }, { "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.ethizo.com/pda-api/developer-guide/" } @@ -80146,14 +80647,9 @@ }, "criteriaMet": [ { - "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 4, @@ -80161,14 +80657,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, @@ -80176,69 +80672,64 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -80246,59 +80737,59 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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" }, { "id": 165, @@ -80306,24 +80797,24 @@ "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": 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": 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": 177, @@ -80331,55 +80822,57 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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://www.ezemrx.com/oauth/fhir.htm" - }, { "criterion": { "id": 181, @@ -80395,6 +80888,14 @@ "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": "https://www.ezemrx.com/oauth/fhir.htm" } ], "acb": "SLI Compliance" @@ -80433,65 +80934,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -80499,9 +80970,9 @@ "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": 174, @@ -80509,29 +80980,29 @@ "title": "Audit Report(s)" }, { - "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": 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" + "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": 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": 59, @@ -80539,14 +81010,29 @@ "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -80559,50 +81045,65 @@ "title": "Transitions of Care" }, { - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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" } ], "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://penn-clinical.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://penn-clinical.com/api-documentation" }, @@ -80647,14 +81148,14 @@ }, "criteriaMet": [ { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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, @@ -80662,144 +81163,154 @@ "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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 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": 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": 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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 42, @@ -80807,39 +81318,29 @@ "title": "Patient Health Information Capture" }, { - "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" }, { "criterion": { @@ -80851,11 +81352,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": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" } ], "acb": "ICSA Labs" @@ -80895,19 +81396,24 @@ }, "criteriaMet": [ { - "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" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -80915,104 +81421,99 @@ "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" }, { - "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": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 37, @@ -81020,64 +81521,64 @@ "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ @@ -81142,20 +81643,35 @@ "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 37, @@ -81163,59 +81679,49 @@ "title": "Trusted Connection" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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" + "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" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -81223,29 +81729,24 @@ "title": "Demographics" }, { - "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -81253,14 +81754,19 @@ "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": 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": 42, @@ -81268,39 +81774,34 @@ "title": "Patient Health Information Capture" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -81361,79 +81862,64 @@ }, "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 174, @@ -81441,19 +81927,19 @@ "title": "Audit Report(s)" }, { - "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" + "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": 35, @@ -81461,9 +81947,14 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -81476,39 +81967,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -81516,9 +82002,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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -81532,17 +82033,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://documenter.getpostman.com/view/5318713/RWgrzdoe" }, { "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://documenter.getpostman.com/view/5318713/RWgrzdoe" } @@ -81584,24 +82085,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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" }, { - "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, @@ -81609,9 +82100,14 @@ "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -81619,69 +82115,74 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -81689,29 +82190,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "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": 25, @@ -81724,19 +82205,29 @@ "title": "Automated Measure Calculation" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, @@ -81744,24 +82235,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 36, @@ -81769,30 +82260,32 @@ "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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" }, { - "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": 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://www.icare.com/developers/" - }, { "criterion": { "id": 181, @@ -81808,6 +82301,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.icare.com/developers/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.icare.com/developers/" } ], "acb": "Drummond Group" @@ -81846,25 +82347,20 @@ "name": "Active" }, "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 43, @@ -81877,54 +82373,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -81932,44 +82418,49 @@ "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -81977,44 +82468,44 @@ "title": "Multi-Factor Authentication" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -82022,9 +82513,9 @@ "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -82032,14 +82523,24 @@ "title": "Implantable Device List" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -82110,39 +82611,39 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 25, @@ -82150,14 +82651,14 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, @@ -82165,24 +82666,29 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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, @@ -82190,29 +82696,24 @@ "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, @@ -82220,24 +82721,9 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 36, @@ -82245,19 +82731,24 @@ "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 178, @@ -82265,50 +82756,52 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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, - "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": 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://apiaccess.mckesson.com/apiportal-service/#/login" - }, { "criterion": { "id": 181, @@ -82317,6 +82810,14 @@ }, "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" + }, { "criterion": { "id": 182, @@ -82363,14 +82864,24 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -82378,84 +82889,74 @@ "title": "Emergency Access" }, { - "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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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" }, { - "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "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": 167, @@ -82463,9 +82964,9 @@ "title": "Electronic Prescribing" }, { - "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": 54, @@ -82473,29 +82974,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 52, @@ -82503,90 +83004,90 @@ "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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" } ], "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://assurecare.com/onc-acb-certified-2015-edition/" }, { "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://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -82631,19 +83132,24 @@ }, "criteriaMet": [ { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -82651,9 +83157,14 @@ "title": "Electronic Prescribing" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -82661,69 +83172,59 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "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": 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" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 42, @@ -82731,74 +83232,69 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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" + "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -82806,32 +83302,45 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "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": 56, @@ -82847,14 +83356,6 @@ "title": "Standardized API for Patient and Population Services" }, "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" @@ -82889,44 +83390,24 @@ }, "criteriaMet": [ { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 44, @@ -82934,24 +83415,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 46, @@ -82959,29 +83435,14 @@ "title": "Transmission to Cancer Registries" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 170, @@ -82989,24 +83450,29 @@ "title": "Care Plan" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 39, @@ -83014,39 +83480,49 @@ "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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, - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 51, @@ -83054,9 +83530,14 @@ "title": "Automated Measure Calculation" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -83064,44 +83545,34 @@ "title": "Emergency Access" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 176, @@ -83114,25 +83585,55 @@ "title": "Secure Messaging" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "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": 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" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -83182,29 +83683,24 @@ }, "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -83212,59 +83708,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 26, @@ -83272,64 +83773,69 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -83337,24 +83843,29 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -83362,19 +83873,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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" }, { "id": 2, @@ -83382,22 +83888,25 @@ "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": 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": 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://careconnect-uat.netsmartcloud.com/" + }, { "criterion": { "id": 56, @@ -83413,14 +83922,6 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83455,59 +83956,54 @@ }, "criteriaMet": [ { - "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": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, { "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": 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": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -83515,74 +84011,54 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 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, @@ -83590,19 +84066,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 36, @@ -83610,40 +84086,70 @@ "title": "Integrity" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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" + }, + { + "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": 33, "number": "170.315 (d)(5)", @@ -83655,30 +84161,25 @@ "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.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://careconnect-uat.netsmartcloud.com/" }, @@ -83728,64 +84229,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 13, @@ -83793,49 +84299,19 @@ "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 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": 11, @@ -83843,69 +84319,64 @@ "title": "Smoking Status" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "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": 42, @@ -83918,19 +84389,44 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -83938,14 +84434,19 @@ "title": "Integrity" }, { - "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": 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" } ], "apiDocumentation": [ @@ -84011,49 +84512,29 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 172, @@ -84061,9 +84542,9 @@ "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": 169, @@ -84076,54 +84557,54 @@ "title": "Amendments" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 180, @@ -84131,24 +84612,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -84156,85 +84642,92 @@ "title": "Automated Measure Calculation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" - }, { "criterion": { "id": 181, @@ -84250,6 +84743,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/Criterions_Software_Inc_EndpointSources.json b/resources/dev_resources/Criterions_Software_Inc_EndpointSources.json new file mode 100644 index 000000000..cbe62c13e --- /dev/null +++ b/resources/dev_resources/Criterions_Software_Inc_EndpointSources.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.lispinerehab", + "OrganizationName": "Long Island Spine Rehabilitation Medicine -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.simonson", + "OrganizationName": "Peter Simonson M.D. -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.futurepodiatrist", + "OrganizationName": "Future Podiatrist, PC -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.djaliman", + "OrganizationName": "Debra Jaliman M.D. -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.amb", + "OrganizationName": "AMB Medical Services -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.tribecaderm", + "OrganizationName": "Tribeca Park Dermatology -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.zambitohc", + "OrganizationName": "Zambito Heart -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.acc", + "OrganizationName": "Advanced Cardio Care  -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.englard", + "OrganizationName": "Arthur Englard M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.phyanesthesia", + "OrganizationName": "Physicians Anesthesia", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/DSS_Inc_1_EndpointSources.json b/resources/dev_resources/DSS_Inc_1_EndpointSources.json new file mode 100644 index 000000000..f81265eb4 --- /dev/null +++ b/resources/dev_resources/DSS_Inc_1_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://dssjuno-dev-web.dssinc.com/fhir/dss/01ho/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/DSS_Inc_2_EndpointSources.json b/resources/dev_resources/DSS_Inc_2_EndpointSources.json new file mode 100644 index 000000000..9c454d949 --- /dev/null +++ b/resources/dev_resources/DSS_Inc_2_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://dssjess-dev-web.dssinc.com/fhir/jess/basepractice/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/DSS_Inc_EndpointSources.json b/resources/dev_resources/DSS_Inc_EndpointSources.json index f81265eb4..1585bcb63 100644 --- a/resources/dev_resources/DSS_Inc_EndpointSources.json +++ b/resources/dev_resources/DSS_Inc_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://dssjuno-dev-web.dssinc.com/fhir/dss/01ho/r4", + "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/communityhealthhospitals/01ho/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/dev_resources/Dynamic_Health_IT_Inc_EndpointSources.json b/resources/dev_resources/Dynamic_Health_IT_Inc_EndpointSources.json new file mode 100644 index 000000000..57f9e0dd7 --- /dev/null +++ b/resources/dev_resources/Dynamic_Health_IT_Inc_EndpointSources.json @@ -0,0 +1,58 @@ +{ + "Endpoints": [ + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhithealth/practicetwo/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/tenant01/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/tenant02/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/tenant03/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/ifiit/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/crossfhirtt1/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/crossfhirtt2/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/practice001/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/kno2/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/Get_Real_Health_EndpointSources.json b/resources/dev_resources/Get_Real_Health_EndpointSources.json index 963ea6e24..5e095455f 100644 --- a/resources/dev_resources/Get_Real_Health_EndpointSources.json +++ b/resources/dev_resources/Get_Real_Health_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://unify-fhir.sbx.chbase.com/", + "URL": "https://fhir-usa.sbx.unify.chbase.com/", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/dev_resources/Greenway_Health_LLC_EndpointSources.json b/resources/dev_resources/Greenway_Health_LLC_EndpointSources.json new file mode 100644 index 000000000..969d33974 --- /dev/null +++ b/resources/dev_resources/Greenway_Health_LLC_EndpointSources.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1110", + "OrganizationName": "Alaska Urology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.198", + "OrganizationName": "Complete Women's Care of Alabama,P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.146", + "OrganizationName": "Southern Head and Neck Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70784", + "OrganizationName": "Cheaha Area Regional Emergency Specialist, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1445", + "OrganizationName": "Anniston Orthopaedic Associates. PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.332764", + "OrganizationName": "Ernest L Hendrix MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73790", + "OrganizationName": "Daily Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70200", + "OrganizationName": "Brookwood Internists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1572", + "OrganizationName": "Southlake Orthopaedics Sports Medicine \u0026 Spine Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.433", + "OrganizationName": "Henderson \u0026 Walton Women's Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/Health_Care_Systems_Inc_EndpointSources.json b/resources/dev_resources/Health_Care_Systems_Inc_EndpointSources.json new file mode 100644 index 000000000..f5b3c4bca --- /dev/null +++ b/resources/dev_resources/Health_Care_Systems_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api", + "OrganizationName": "Demo", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/InPracSys_EndpointSources.json b/resources/dev_resources/InPracSys_EndpointSources.json new file mode 100644 index 000000000..7ee9f5302 --- /dev/null +++ b/resources/dev_resources/InPracSys_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fhirips.azurehealthcareapis.com", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/MEDHOST_EndpointSources.json b/resources/dev_resources/MEDHOST_EndpointSources.json index 187666184..5484667d0 100644 --- a/resources/dev_resources/MEDHOST_EndpointSources.json +++ b/resources/dev_resources/MEDHOST_EndpointSources.json @@ -1,5 +1,11 @@ { "Endpoints": [ + { + "URL": "https://fhir.yourcareuniverse.net/tenant/ed6a665c-b100-4cee-b23d-6197c0e9c9ee", + "OrganizationName": "AHS Vista Health System - East", + "NPIID": "1992856819", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.yourcareuniverse.net/tenant/0ddc7794-d4a3-4d17-a674-9187af28aea6", "OrganizationName": "ANTELOPE MEMORIAL HOSPITAL", @@ -53,12 +59,6 @@ "OrganizationName": "Baptist Beaumont Hospital", "NPIID": "1093744187", "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.yourcareuniverse.net/tenant/a8c1e524-7a98-4b94-ac39-c13550cd1af2", - "OrganizationName": "Barstow Community Hospital", - "NPIID": "1780655670", - "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/dev_resources/MaxRemind_Inc_EndpointSources.json b/resources/dev_resources/MaxRemind_Inc_EndpointSources.json new file mode 100644 index 000000000..062a5ab83 --- /dev/null +++ b/resources/dev_resources/MaxRemind_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.maximus.care/api", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/MedicaSoft_LLC_EndpointSources.json b/resources/dev_resources/MedicaSoft_LLC_EndpointSources.json new file mode 100644 index 000000000..c642d7038 --- /dev/null +++ b/resources/dev_resources/MedicaSoft_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://r4cert.medicasoft.us/api/fhir", + "OrganizationName": "MedicaSoft Sandbox", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/Practice_Fusion_EndpointSources.json b/resources/dev_resources/Practice_Fusion_EndpointSources.json index 6d8735624..04ed47c17 100644 --- a/resources/dev_resources/Practice_Fusion_EndpointSources.json +++ b/resources/dev_resources/Practice_Fusion_EndpointSources.json @@ -2,13 +2,13 @@ "Endpoints": [ { "URL": "https://api.patientfusion.com/fhir/r4/v1/118b460b-8390-4754-8e4a-1dd5ee20f599", - "OrganizationName": "WompWompWomp", + "OrganizationName": "Phenomenal Practice Tester", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/118b460b-8390-4754-8e4a-1dd5ee20f599", - "OrganizationName": "WompWompWomp", + "OrganizationName": "Phenomenal Practice Tester", "NPIID": "", "OrganizationZipCode": "" }, diff --git a/resources/dev_resources/TRIARQ_Practice_Services_EndpointSources.json b/resources/dev_resources/TRIARQ_Practice_Services_EndpointSources.json index 70402a24f..a14690172 100644 --- a/resources/dev_resources/TRIARQ_Practice_Services_EndpointSources.json +++ b/resources/dev_resources/TRIARQ_Practice_Services_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://fhir.myqone.com/api/FHIR/R4/", + "URL": "https://fhir.myqone.com/api/FHIR/R4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/dev_resources/Tenzing_Medical_LLC_EndpointSources.json b/resources/dev_resources/Tenzing_Medical_LLC_EndpointSources.json new file mode 100644 index 000000000..40228ca2a --- /dev/null +++ b/resources/dev_resources/Tenzing_Medical_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://orovillehospital.api.dev.bridgepatientportal.com/fhir/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json b/resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json index d33980300..87599061f 100644 --- a/resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json +++ b/resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json @@ -1,55 +1,55 @@ { "Endpoints": [ { - "URL": "https://fhir.healthtogo.me/oauth/imed.assa", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.assa", "OrganizationName": "Advanced Southern Surgical ASSA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.bourque", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.bourque", "OrganizationName": "Daniel R. Bourque, M.D., APMC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.efm", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.efm", "OrganizationName": "Edwards Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.fammedpc", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.fammedpc", "OrganizationName": "Family Medicine, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.lhc", - "OrganizationName": "Louisiana Heart Center ** LHC", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.welshfamily", + "OrganizationName": "LCMH TCW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.noim", - "OrganizationName": "North Oaks Internal Medicine", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.lhc", + "OrganizationName": "Louisiana Heart Center ** LHC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.degeyter", - "OrganizationName": "Roland J. Degeyter, M.D., APMC", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.noim", + "OrganizationName": "North Oaks Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.welshfamily", - "OrganizationName": "The Clinic of Welsh", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.degeyter", + "OrganizationName": "Roland J. Degeyter, M.D., APMC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.vsc", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.vsc", "OrganizationName": "Vascular Specialty C VSC", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json b/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json index be50f0a5a..78a14bdfa 100644 --- a/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json +++ b/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json @@ -1458,6 +1458,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.we0.hos.allscriptscloud.com/R2/Open", + "OrganizationName": "Wise - WE01", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.we0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wise - WE01", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.we0.hos.allscriptscloud.com/open", + "OrganizationName": "Wise - WE01", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.we0.hos.allscriptscloud.com/R2/Fhir", + "OrganizationName": "Wise - WE01", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhirprod.wyckoffhospital.org/R2/open", "OrganizationName": "Wyckoff Heights Medical Center - WO01", @@ -2118,6 +2142,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/HCAPROD_36", + "OrganizationName": "HCAPROD_36", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/HCAPROD_36", + "OrganizationName": "HCAPROD_36", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.comfhir/HCAPROD_36", + "OrganizationName": "HCAPROD_36", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10155929", "OrganizationName": "Health Alliance of the Hudson Valley", @@ -2250,18 +2292,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/HCAPROD_36", - "OrganizationName": "Hospital Corporation Of America", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/HCAPROD_36", - "OrganizationName": "Hospital Corporation Of America", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://fhir.hfsc.org/R4/open-Prod", "OrganizationName": "Hospital for Special Care - PROD1", @@ -4056,12 +4086,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wise - WE01", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-Prod", "OrganizationName": "Wise - WE01", @@ -4069,32 +4093,32 @@ "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-PROD", - "OrganizationName": "Wise Health", + "URL": "https://fhir.we0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wise - WE01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/Fhir", - "OrganizationName": "Wise Health", + "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Wise - WE01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-PROD", - "OrganizationName": "Wise Health", + "URL": "https://fhir.we0.hos.allscriptscloud.com/open", + "OrganizationName": "Wise - WE01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/Open", - "OrganizationName": "Wise Health", + "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Wise - WE01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/FHIR", - "OrganizationName": "Wise Health", + "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Wise - WE01", "NPIID": "", "OrganizationZipCode": "" }, diff --git a/resources/prod_resources/Applied_Research_Works_Inc_EndpointSources.json b/resources/prod_resources/Applied_Research_Works_Inc_EndpointSources.json new file mode 100644 index 000000000..08da8e6ed --- /dev/null +++ b/resources/prod_resources/Applied_Research_Works_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.cozeva.com/4_0_0", + "OrganizationName": "Cozeva", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/CHPLEndpointResourcesList.json b/resources/prod_resources/CHPLEndpointResourcesList.json index e00bfd38f..c840d9c49 100644 --- a/resources/prod_resources/CHPLEndpointResourcesList.json +++ b/resources/prod_resources/CHPLEndpointResourcesList.json @@ -1,4 +1,88 @@ [ + { + "FormatType": "Lantern", + "URL": "https://inpracsys.com/fhir", + "EndpointName": "InPracSys", + "FileName": "InPracSys_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://documents.maximus.care", + "EndpointName": "MaxRemind Inc", + "FileName": "MaxRemind_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://criterions.com/fhir-end-points/", + "EndpointName": "Criterions Software Inc", + "FileName": "Criterions_Software_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://fhir.thesnfist.com/endpointlist", + "EndpointName": "Saisystems International", + "FileName": "Saisystems_International_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", + "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://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://fhir.cozeva.com/endpoints", + "EndpointName": "Applied Research Works, Inc.", + "FileName": "Applied_Research_Works_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", + "EndpointName": "Dynamic Health IT, Inc", + "FileName": "Dynamic_Health_IT_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_2_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://code.medicasoft.us/fhir_r4_endpoints.html", + "EndpointName": "MedicaSoft, LLC", + "FileName": "MedicaSoft_LLC_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://aidbox.cx360.net/service-base-urls", + "EndpointName": "Core Solutions Inc", + "FileName": "Core_Solutions_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", + "EndpointName": "i3 Healthcare Solutions, LLC", + "FileName": "i3_Healthcare_Solutions_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://apidocs.onemedical.io/fhir/overview/", @@ -121,7 +205,7 @@ }, { "FormatType": "Lantern", - "URL": "https://api.meldrx.com/Directories/fhir/endpoints", + "URL": "https://app.meldrx.com/api/Directories/fhir/endpoints", "EndpointName": "Darena Solutions LLC", "FileName": "Darena_Solutions_LLC_EndpointSources.json" }, @@ -269,36 +353,18 @@ "EndpointName": "Compulink Healthcare Solutions", "FileName": "Compulink_Healthcare_Solutions_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", - "EndpointName": "Dynamic Health IT, Inc", - "FileName": "Dynamic_Health_IT_Inc_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://www.dynamichealthit.com/dynamic-fhir-api", "EndpointName": "Dynamic Health IT, Inc", "FileName": "Dynamic_Health_IT_Inc_1_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://fhir.cozeva.com/endpoints", - "EndpointName": "Applied Research Works, Inc.", - "FileName": "Applied_Research_Works_Inc_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", "EndpointName": "Qualifacts Systems, LLC", "FileName": "Qualifacts_Systems_LLC_1_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://criterions.com/fhir-end-points/", - "EndpointName": "Criterions Software Inc", - "FileName": "Criterions_Software_Inc_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://www.crystalpm.com/FHIRServiceURLs.csv", @@ -311,12 +377,6 @@ "EndpointName": "CureMD.com, Inc.", "FileName": "CureMDcom_Inc_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://aidbox.cx360.net/service-base-urls", - "EndpointName": "Core Solutions Inc", - "FileName": "Core_Solutions_Inc_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir", @@ -467,18 +527,6 @@ "EndpointName": "Glenwood Systems LLC", "FileName": "Glenwood_Systems_LLC_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", - "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", @@ -503,12 +551,6 @@ "EndpointName": "Physicians EMR, LLC", "FileName": "Physicians_EMR_LLC_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://inpracsys.com/fhir", - "EndpointName": "InPracSys", - "FileName": "InPracSys_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", @@ -555,20 +597,8 @@ "FormatType": "Lantern", "URL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", "EndpointName": "DSS, Inc.", - "FileName": "DSS_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", - "EndpointName": "DSS, Inc.", "FileName": "DSS_Inc_1_EndpointSources.json" }, - { - "FormatType": "Lantern", - "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/", @@ -641,12 +671,6 @@ "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", @@ -863,12 +887,6 @@ "EndpointName": "CitiusTech, Inc.", "FileName": "CitiusTech_Inc_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://fhir.thesnfist.com/endpointlist", - "EndpointName": "Saisystems International", - "FileName": "Saisystems_International_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://open.allscripts.com/fhirendpoints", @@ -917,6 +935,12 @@ "EndpointName": "Doc-tor.com", "FileName": "Doctorcom_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.pointclickcare.com/", + "EndpointName": "PointClickCare Technologies Inc.", + "FileName": "PointClickCare_Technologies_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://dataapi.practiceehr.com", @@ -949,7 +973,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", + "URL": "https://fhir.procentive.com/", "EndpointName": "Procentive", "FileName": "Procentive_EndpointSources.json" }, @@ -1103,12 +1127,6 @@ "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", @@ -1199,6 +1217,12 @@ "EndpointName": "Zoobook Systems LLC", "FileName": "Zoobook_Systems_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.zoommd.com/zoommd-file-api-endpoints", + "EndpointName": "Metasolutions Inc", + "FileName": "Metasolutions_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", @@ -1265,12 +1289,6 @@ "EndpointName": "Dexter Solutions Inc", "FileName": "Dexter_Solutions_Inc_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://code.medicasoft.us/fhir_r4_endpoints.html", - "EndpointName": "MedicaSoft, LLC", - "FileName": "MedicaSoft_LLC_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/ServiceUrl.html", @@ -1279,7 +1297,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", + "URL": "https://fhir.10e11.com/", "EndpointName": "TenEleven Group", "FileName": "TenEleven_Group_EndpointSources.json" }, @@ -1319,12 +1337,6 @@ "EndpointName": "Healogics, Inc.", "FileName": "Healogics_Inc_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", - "EndpointName": "i3 Healthcare Solutions, LLC", - "FileName": "i3_Healthcare_Solutions_LLC_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://www.icare.com/endpoints.csv", diff --git a/resources/prod_resources/CHPLProductsInfo.json b/resources/prod_resources/CHPLProductsInfo.json index 01cb3ef35..b7e9ad78b 100644 --- a/resources/prod_resources/CHPLProductsInfo.json +++ b/resources/prod_resources/CHPLProductsInfo.json @@ -32,64 +32,49 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 9, @@ -97,14 +82,19 @@ "title": "Clinical Decision Support" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -112,44 +102,44 @@ "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -157,9 +147,19 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -173,17 +173,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://apidocs.onemedical.io/fhir/overview/" }, { "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://apidocs.onemedical.io/fhir/overview/" } @@ -219,50 +219,35 @@ "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "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": 26, @@ -270,54 +255,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -325,34 +300,34 @@ "title": "Quality Management System" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -360,9 +335,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -370,35 +360,37 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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://apidocs.chirp.app" - }, { "criterion": { "id": 182, @@ -407,6 +399,14 @@ }, "value": "https://apidocs.chirp.app/" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apidocs.chirp.app" + }, { "criterion": { "id": 181, @@ -453,59 +453,44 @@ }, "criteriaMet": [ { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 182, @@ -513,49 +498,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, @@ -563,19 +538,19 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -583,24 +558,34 @@ "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 15, @@ -608,49 +593,64 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" } ], "apiDocumentation": [ @@ -664,17 +664,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://app.smartemr.com/api/api_client.php" }, { "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.smartemr.com/api/api_client.php" } @@ -716,59 +716,64 @@ }, "criteriaMet": [ { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -776,84 +781,84 @@ "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -861,29 +866,24 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -944,99 +944,99 @@ }, "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 56, @@ -1044,82 +1044,82 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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" } ], "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://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -1133,9 +1133,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://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -1177,39 +1177,34 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -1217,39 +1212,44 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -1257,49 +1257,39 @@ "title": "Safety-Enhanced Design" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -1307,14 +1297,19 @@ "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": 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" }, { "id": 56, @@ -1322,9 +1317,9 @@ "title": "Application Access - Patient Selection" }, { - "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, @@ -1332,29 +1327,34 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -1420,34 +1420,29 @@ }, "criteriaMet": [ { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -1455,59 +1450,64 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -1515,14 +1515,24 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -1530,9 +1540,9 @@ "title": "Quality Management System" }, { - "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, @@ -1540,29 +1550,19 @@ "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -1570,42 +1570,42 @@ "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "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://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" }, @@ -1619,9 +1619,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://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } @@ -1663,44 +1663,44 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -1708,29 +1708,24 @@ "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, @@ -1738,9 +1733,14 @@ "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -1748,14 +1748,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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 171, @@ -1763,24 +1758,19 @@ "title": "Electronic Health Information Export" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 39, @@ -1788,34 +1778,34 @@ "title": "Accounting of Disclosures" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 59, - "number": "170.315 (h)(1)", - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -1823,17 +1813,35 @@ "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": 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": 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://openapi.axeium.net" + }, { "criterion": { "id": 181, @@ -1849,14 +1857,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://axeium.net/api/swagger/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://openapi.axeium.net" } ], "acb": "SLI Compliance" @@ -1896,34 +1896,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -1931,64 +1931,64 @@ "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, @@ -2001,19 +2001,14 @@ "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 34, @@ -2021,29 +2016,29 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 59, @@ -2051,60 +2046,57 @@ "title": "Direct Project" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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": 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": "https://developer.advancedmd.com/fhir/apis" - }, { "criterion": { "id": 182, @@ -2120,6 +2112,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -2154,9 +2154,14 @@ }, "criteriaMet": [ { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 166, @@ -2164,29 +2169,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 1, @@ -2194,14 +2194,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -2209,19 +2219,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, @@ -2229,44 +2239,24 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -2274,9 +2264,9 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -2284,54 +2274,54 @@ "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" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -2339,19 +2329,29 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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" } ], "apiDocumentation": [ @@ -2365,17 +2365,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://developer.advancedmd.com/fhir/apis" }, { "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" } @@ -2417,44 +2417,34 @@ }, "criteriaMet": [ { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 51, + "number": "170.315 (g)(2)", + "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": 172, @@ -2462,34 +2452,19 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 44, @@ -2497,14 +2472,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -2517,74 +2492,74 @@ "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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 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": 32, @@ -2592,14 +2567,14 @@ "title": "Amendments" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -2607,22 +2582,55 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": "http://agastha.com/apiR4.html" + }, { "criterion": { "id": 182, @@ -2638,14 +2646,6 @@ "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" @@ -2684,76 +2684,68 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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, @@ -2769,6 +2761,14 @@ "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" @@ -2818,25 +2818,25 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 53, "number": "170.315 (g)(4)", @@ -2894,20 +2894,45 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 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": 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": 25, @@ -2920,9 +2945,9 @@ "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": 29, @@ -2930,9 +2955,14 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -2940,74 +2970,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 51, "number": "170.315 (g)(2)", "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": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 37, @@ -3015,24 +3000,14 @@ "title": "Trusted Connection" }, { - "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, - "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": 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": 176, @@ -3040,49 +3015,74 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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" } ], "apiDocumentation": [ @@ -3096,17 +3096,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://www.mdsynergy.com/AltheaAPIDocumentation.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://www.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3148,89 +3148,69 @@ }, "criteriaMet": [ { - "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 43, @@ -3238,19 +3218,24 @@ "title": "Transmission to Immunization 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 181, @@ -3258,74 +3243,89 @@ "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "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": 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" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -3339,17 +3339,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://harrisambulatory.com/ac-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://harrisambulatory.com/ac-api-documentation/" } @@ -3386,64 +3386,84 @@ }, "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": 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": 37, - "number": "170.315 (d)(9)", - "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": 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": 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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "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": 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": 51, @@ -3451,24 +3471,14 @@ "title": "Automated Measure Calculation" }, { - "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, - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 52, @@ -3476,34 +3486,29 @@ "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 32, @@ -3511,34 +3516,24 @@ "title": "Amendments" }, { - "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -3546,37 +3541,42 @@ "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": 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, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "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://harrisambulatory.com/ac-api-documentation/" }, @@ -3590,9 +3590,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://harrisambulatory.com/ac-api-documentation/" } @@ -3629,54 +3629,59 @@ }, "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": 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" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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, @@ -3684,14 +3689,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -3699,59 +3704,59 @@ "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -3759,9 +3764,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": 166, @@ -3769,19 +3774,19 @@ "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -3789,32 +3794,35 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 181, @@ -3830,14 +3838,6 @@ "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" @@ -3877,24 +3877,44 @@ }, "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -3902,14 +3922,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 3, @@ -3917,19 +3947,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -3937,24 +3967,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 42, @@ -3962,9 +3992,9 @@ "title": "Patient Health Information Capture" }, { - "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": 5, @@ -3972,39 +4002,14 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -4012,39 +4017,34 @@ "title": "Automatic Access Time-out" }, { - "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" }, { - "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": 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" } ], "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://astronautehr.com/index.php/170-315g10-apis/" + "value": "https://astronautehr.com/index.php/disclosures/" }, { "criterion": { @@ -4056,11 +4056,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://astronautehr.com/index.php/disclosures/" + "value": "https://astronautehr.com/index.php/170-315g10-apis/" } ], "acb": "SLI Compliance" @@ -4100,89 +4100,94 @@ }, "criteriaMet": [ { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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, @@ -4195,90 +4200,77 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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" } ], "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": 56, @@ -4294,6 +4286,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pai.healthcare/documentation" } ], "acb": "Drummond Group" @@ -4333,49 +4333,9 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 39, @@ -4383,9 +4343,9 @@ "title": "Accounting of Disclosures" }, { - "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": 3, @@ -4393,14 +4353,9 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -4408,19 +4363,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 13, @@ -4428,49 +4378,84 @@ "title": "Patient-Specific Education Resources" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "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": 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, + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, @@ -4478,40 +4463,47 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "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": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://hmsfirst.com/apidocs/" - }, { "criterion": { "id": 181, @@ -4520,6 +4512,14 @@ }, "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/" + }, { "criterion": { "id": 182, @@ -4566,34 +4566,19 @@ }, "criteriaMet": [ { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 37, @@ -4601,19 +4586,9 @@ "title": "Trusted Connection" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -4621,14 +4596,14 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 59, @@ -4636,74 +4611,74 @@ "title": "Direct Project" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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, @@ -4711,49 +4686,49 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -4761,35 +4736,52 @@ "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": 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": 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://dev.azaleahealth.com/" + "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": 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": [ { "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/" }, @@ -4800,6 +4792,14 @@ "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" @@ -4839,24 +4839,24 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 165, @@ -4864,14 +4864,9 @@ "title": "Transitions of Care" }, { - "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": 6, @@ -4879,9 +4874,14 @@ "title": "Problem 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -4889,69 +4889,69 @@ "title": "Safety-Enhanced 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": 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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 49, @@ -4959,39 +4959,29 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 53, @@ -4999,24 +4989,19 @@ "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 48, @@ -5024,9 +5009,14 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -5034,47 +5024,65 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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://portal.ezcaretech.com:30112/applicationAccessApi" + }, { "criterion": { "id": 181, @@ -5090,14 +5098,6 @@ "title": "Application Access - Patient Selection" }, "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" } ], "acb": "Drummond Group" @@ -5137,44 +5137,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 51, @@ -5182,14 +5162,9 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -5197,24 +5172,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 173, @@ -5222,19 +5197,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 37, @@ -5242,14 +5207,19 @@ "title": "Trusted Connection" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 180, @@ -5257,39 +5227,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, { "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 49, @@ -5297,9 +5277,9 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 25, @@ -5307,14 +5287,9 @@ "title": "Clinical Quality Measures - Record and 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, @@ -5327,39 +5302,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 41, @@ -5367,14 +5352,9 @@ "title": "Secure Messaging" }, { - "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" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 168, @@ -5382,35 +5362,47 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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" } ], "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, @@ -5426,6 +5418,14 @@ "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,94 +5465,89 @@ }, "criteriaMet": [ { - "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": 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": 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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, @@ -5560,9 +5555,9 @@ "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": 41, @@ -5570,114 +5565,89 @@ "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, { "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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" }, { "id": 11, @@ -5685,19 +5655,14 @@ "title": "Smoking Status" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 49, @@ -5705,19 +5670,19 @@ "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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -5725,20 +5690,47 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "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, @@ -5747,6 +5739,14 @@ }, "value": "http://prognocis.com/ehr-interoperability/" }, + { + "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": 181, @@ -5788,34 +5788,9 @@ }, "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -5823,124 +5798,134 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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, @@ -5948,59 +5933,74 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 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" } ], "apiDocumentation": [ @@ -6014,17 +6014,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://prognocis.com/fhir/FHIRAPIDocuments.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://prognocis.com/fhir/FHIRAPIDocuments.html" } @@ -6066,44 +6066,49 @@ "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -6111,159 +6116,154 @@ "title": "Audit Report(s)" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -6271,9 +6271,9 @@ "title": "Direct Project" }, { - "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" } ], "apiDocumentation": [ @@ -6339,14 +6339,14 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 165, @@ -6354,59 +6354,49 @@ "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -6414,14 +6404,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 36, @@ -6429,14 +6419,9 @@ "title": "Integrity" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -6444,24 +6429,14 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -6474,14 +6449,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -6489,30 +6464,47 @@ "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": 181, + "number": "170.315 (g)(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": 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" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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://betterdayhealth.net/OpenApiTestClient/Home/Documentation" - }, { "criterion": { "id": 56, @@ -6528,6 +6520,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" } ], "acb": "Drummond Group" @@ -6535,7 +6535,7 @@ ] }, { - "listSourceURL": "https://api.meldrx.com/Directories/fhir/endpoints", + "listSourceURL": "https://app.meldrx.com/api/Directories/fhir/endpoints", "softwareProducts": [ { "id": 10435, @@ -6567,20 +6567,35 @@ }, "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": 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": 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": 177, "number": "170.315 (d)(13)", @@ -6592,44 +6607,29 @@ "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" - }, - { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" } ], "apiDocumentation": [ @@ -6687,44 +6687,49 @@ }, "criteriaMet": [ { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -6732,19 +6737,9 @@ "title": "Transmission to Immunization Registries" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -6752,39 +6747,29 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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, @@ -6797,44 +6782,44 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -6842,35 +6827,42 @@ "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": 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": 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": 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": 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://blueehr.com/certifications-and-costs/" - }, { "criterion": { "id": 181, @@ -6879,6 +6871,14 @@ }, "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, @@ -6924,31 +6924,26 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "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": 174, "number": "170.315 (d)(3)", @@ -6960,29 +6955,29 @@ "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": 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" + }, { "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -6990,9 +6985,14 @@ "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": 29, @@ -7000,29 +7000,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" } ], "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://bridgepatientportal.docs.apiary.io/" + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" }, { "criterion": { @@ -7034,11 +7034,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://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" + "value": "https://bridgepatientportal.docs.apiary.io/" } ], "acb": "SLI Compliance" @@ -7078,29 +7078,29 @@ }, "criteriaMet": [ { - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 172, @@ -7108,44 +7108,44 @@ "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -7153,24 +7153,24 @@ "title": "Direct Project" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 32, @@ -7178,34 +7178,34 @@ "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -7213,9 +7213,14 @@ "title": "Emergency Access" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -7223,44 +7228,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 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": 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)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -7274,17 +7274,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://broadstreetcare.com/docs" }, { "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://broadstreetcare.com/docs" } @@ -7326,89 +7326,99 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 165, @@ -7416,64 +7426,59 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, @@ -7481,54 +7486,54 @@ "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 14, - "number": "170.315 (a)(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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -7536,40 +7541,27 @@ "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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" } ], "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": 181, @@ -7585,6 +7577,14 @@ "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" @@ -7619,49 +7619,59 @@ }, "criteriaMet": [ { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 44, @@ -7669,29 +7679,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 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": 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": 37, @@ -7699,9 +7709,19 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -7709,39 +7729,34 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 52, @@ -7754,115 +7769,92 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "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": 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": 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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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://ehealthline.com/dev/pdf/API_TermsOfUse.htm" - }, { "criterion": { "id": 56, @@ -7878,6 +7870,14 @@ "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" @@ -7916,70 +7916,85 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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, + "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": 51, @@ -7987,14 +8002,19 @@ "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 25, @@ -8002,79 +8022,74 @@ "title": "Clinical Quality Measures - Record and 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, @@ -8082,49 +8097,34 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -8134,7 +8134,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://emds.com/certifications/" }, { "criterion": { @@ -8142,7 +8142,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://emds.com/certifications/" }, { "criterion": { @@ -8150,7 +8150,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://emds.com/certifications/" } ], "acb": "Drummond Group" @@ -8185,29 +8185,24 @@ }, "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -8215,89 +8210,104 @@ "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 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": 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": 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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -8305,44 +8315,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 56, + "number": "170.315 (g)(7)", + "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": 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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, @@ -8350,35 +8360,25 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://apitest.emds.com/documentation" }, @@ -8432,78 +8432,86 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "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": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "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": 33, - "number": "170.315 (d)(5)", - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, { "criterion": { "id": 182, @@ -8519,14 +8527,6 @@ "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" } ], "acb": "Drummond Group" @@ -8566,29 +8566,34 @@ }, "criteriaMet": [ { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 36, @@ -8596,29 +8601,39 @@ "title": "Integrity" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 33, @@ -8626,64 +8641,49 @@ "title": "Automatic Access Time-out" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, @@ -8691,69 +8691,69 @@ "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -8767,17 +8767,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://docs.canvasmedical.com/api/" }, { "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/" } @@ -8819,24 +8819,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -8844,19 +8844,24 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -8864,124 +8869,119 @@ "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -8989,14 +8989,19 @@ "title": "Accessibility-Centered 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -9004,39 +9009,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 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://www.acurussolutions.com/Certification.html" + "value": "http://www.acurussolutions.com/Certification.html" }, { "criterion": { @@ -9048,11 +9048,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": "http://www.acurussolutions.com/Certification.html" + "value": "https://www.acurussolutions.com/Certification.html" } ], "acb": "SLI Compliance" @@ -9092,14 +9092,19 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, @@ -9107,139 +9112,134 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 176, @@ -9247,9 +9247,29 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 9, @@ -9265,26 +9285,6 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -9345,39 +9345,14 @@ }, "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -9385,34 +9360,44 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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" }, + { + "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": 14, "number": "170.315 (a)(14)", "title": "Implantable Device 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -9420,49 +9405,49 @@ "title": "CPOE - Laboratory" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 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": 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": 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, @@ -9470,9 +9455,9 @@ "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": 177, @@ -9480,24 +9465,44 @@ "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": 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": 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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "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, @@ -9505,42 +9510,37 @@ "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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" } ], "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://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, @@ -9554,9 +9554,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://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" } @@ -9593,64 +9593,64 @@ }, "criteriaMet": [ { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -9658,74 +9658,59 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 28, @@ -9733,9 +9718,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -9743,19 +9728,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 32, @@ -9763,14 +9743,14 @@ "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -9778,59 +9758,79 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -9844,17 +9844,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/" } @@ -9896,29 +9896,9 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 37, @@ -9926,39 +9906,39 @@ "title": "Trusted Connection" }, { - "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -9966,29 +9946,29 @@ "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": 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" + "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": 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": 42, @@ -9996,19 +9976,39 @@ "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 25, @@ -10016,95 +10016,95 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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" } ], "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://qualifacts.com/api-documentation/" }, { "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://qualifacts.com/api-documentation/" }, @@ -10154,54 +10154,49 @@ }, "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 29, + "number": "170.315 (d)(1)", + "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": 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": 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": 176, @@ -10209,19 +10204,14 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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, @@ -10229,34 +10219,29 @@ "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 25, @@ -10264,9 +10249,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 165, @@ -10274,9 +10279,14 @@ "title": "Transitions of Care" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, @@ -10287,16 +10297,6 @@ "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" } ], "apiDocumentation": [ @@ -10362,72 +10362,72 @@ }, "criteriaMet": [ { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 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": 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": 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": 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": 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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "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://api.carefluence.com" }, @@ -10441,9 +10441,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://api.carefluence.com" } @@ -10484,30 +10484,30 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 4, @@ -10515,19 +10515,19 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -10535,54 +10535,54 @@ "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 176, @@ -10590,14 +10590,14 @@ "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": 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": 53, @@ -10605,24 +10605,24 @@ "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" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 11, @@ -10630,100 +10630,92 @@ "title": "Smoking Status" }, { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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://www.charmhealth.com/resources/fhir/index.html" - }, { "criterion": { "id": 56, @@ -10739,6 +10731,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -10777,6 +10777,36 @@ "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 48, "number": "170.315 (f)(6)", @@ -10788,29 +10818,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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, + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 171, @@ -10823,49 +10858,34 @@ "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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -10873,24 +10893,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -10898,24 +10913,24 @@ "title": "Trusted Connection" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 5, @@ -10923,77 +10938,62 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 54, + "number": "170.315 (g)(5)", + "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)" }, { - "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": 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": 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": 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://dev.azaleahealth.com/" }, @@ -11007,9 +11007,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://dev.azaleahealth.com/" } @@ -11050,50 +11050,15 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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" - }, { "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 10, @@ -11101,74 +11066,59 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 59, @@ -11181,57 +11131,107 @@ "title": "Amendments" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 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" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.charteasy.com/" }, @@ -11245,9 +11245,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.charteasy.com/" } @@ -11288,35 +11288,30 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 5, @@ -11324,9 +11319,24 @@ "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -11334,19 +11344,19 @@ "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 54, @@ -11354,9 +11364,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 173, @@ -11364,24 +11384,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 39, @@ -11389,19 +11414,14 @@ "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -11409,29 +11429,14 @@ "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": 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" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 179, @@ -11439,19 +11444,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -11459,52 +11459,60 @@ "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, { "criterion": { "id": 56, @@ -11520,14 +11528,6 @@ "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,69 +11567,69 @@ }, "criteriaMet": [ { - "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": 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": 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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 14, @@ -11637,89 +11637,49 @@ "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 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, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 174, @@ -11727,60 +11687,92 @@ "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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://beta.afoundria.com/api" - }, { "criterion": { "id": 182, @@ -11796,6 +11788,14 @@ "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,49 +11835,44 @@ }, "criteriaMet": [ { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -11885,109 +11880,109 @@ "title": "End-User Device Encryption" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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, - "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": 52, + "number": "170.315 (g)(3)", + "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": 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, + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 37, @@ -11995,34 +11990,39 @@ "title": "Trusted Connection" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 172, @@ -12033,9 +12033,9 @@ "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.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" }, @@ -12049,9 +12049,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.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" } @@ -12093,139 +12093,134 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 59, + "number": "170.315 (h)(1)", + "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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, @@ -12233,34 +12228,34 @@ "title": "Implantable Device List" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, @@ -12268,29 +12263,34 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -12355,50 +12355,30 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 166, @@ -12406,39 +12386,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 44, @@ -12446,49 +12436,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 178, @@ -12496,54 +12481,54 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 52, @@ -12551,9 +12536,24 @@ "title": "Safety-Enhanced Design" }, { - "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": 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, @@ -12561,34 +12561,34 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "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://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" }, { "criterion": { @@ -12600,11 +12600,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://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" + "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" @@ -12644,54 +12644,44 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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" }, { - "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": 34, @@ -12699,64 +12689,59 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 3, @@ -12764,44 +12749,54 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -12809,9 +12804,14 @@ "title": "Multi-Factor Authentication" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 42, @@ -12819,19 +12819,19 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 52, @@ -12839,34 +12839,29 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 181, @@ -12874,19 +12869,24 @@ "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "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.goldblattsystems.com/apis/" + "value": "https://www.goldblattsystems.com/apis" }, { "criterion": { @@ -12898,11 +12898,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://www.goldblattsystems.com/apis" + "value": "https://www.goldblattsystems.com/apis/" } ], "acb": "SLI Compliance" @@ -12942,69 +12942,64 @@ }, "criteriaMet": [ { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -13017,24 +13012,19 @@ "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": 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": 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": 37, @@ -13042,29 +13032,39 @@ "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" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, @@ -13072,54 +13072,54 @@ "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 181, @@ -13127,27 +13127,27 @@ "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" }, @@ -13161,9 +13161,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://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" } @@ -13205,9 +13205,9 @@ }, "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": 37, @@ -13215,14 +13215,19 @@ "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": 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, @@ -13230,49 +13235,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -13280,9 +13265,9 @@ "title": "Amendments" }, { - "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": 34, @@ -13295,9 +13280,9 @@ "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -13305,14 +13290,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -13370,39 +13370,59 @@ }, "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": 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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -13410,29 +13430,34 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -13440,19 +13465,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -13460,19 +13485,19 @@ "title": "Clinical Decision Support" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, @@ -13480,49 +13505,34 @@ "title": "Demographics" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 3, @@ -13530,40 +13540,22 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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": 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": 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://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" - }, { "criterion": { "id": 182, @@ -13579,6 +13571,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -13618,14 +13618,14 @@ }, "criteriaMet": [ { - "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": 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": 37, @@ -13633,29 +13633,14 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 13, @@ -13663,19 +13648,24 @@ "title": "Patient-Specific Education Resources" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, @@ -13683,14 +13673,24 @@ "title": "Quality Management System" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -13698,79 +13698,79 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -13784,17 +13784,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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" } @@ -13836,54 +13836,69 @@ }, "criteriaMet": [ { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 59, @@ -13891,104 +13906,89 @@ "title": "Direct Project" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" }, - { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.dynamichealthit.com/dynamic-fhir-api" - }, { "criterion": { "id": 56, @@ -14015,6 +14007,14 @@ "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" @@ -14053,16 +14053,6 @@ "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)", @@ -14074,9 +14064,9 @@ "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": 182, @@ -14084,9 +14074,19 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 33, @@ -14099,14 +14099,14 @@ "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -14114,30 +14114,30 @@ "title": "Quality Management System" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - } + "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://fhir.developers.cozeva.com/" }, { "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.developers.cozeva.com/" }, @@ -14187,54 +14187,49 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 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": 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, @@ -14242,84 +14237,69 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 28, @@ -14327,24 +14307,14 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -14361,15 +14331,40 @@ "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": 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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "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": 2, @@ -14377,19 +14372,24 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 167, @@ -14405,17 +14405,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://www.qualifacts.com/api-documentation/" }, { "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.qualifacts.com/api-documentation/" }, @@ -14464,55 +14464,25 @@ "name": "Active" }, "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 177, @@ -14520,69 +14490,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "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": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 37, @@ -14590,54 +14550,49 @@ "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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": 167, - "number": "170.315 (b)(3)", - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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, + "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": 9, @@ -14649,31 +14604,68 @@ "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://criterions.com/documentation/" - }, { "criterion": { "id": 182, @@ -14689,6 +14681,14 @@ "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" @@ -14727,100 +14727,100 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 177, - "number": "170.315 (d)(13)", - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 182, @@ -14828,59 +14828,64 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 165, @@ -14888,45 +14893,40 @@ "title": "Transitions of Care" }, { - "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, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" }, { "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.crystalpm.com/APIDocumentation.pdf" }, @@ -14976,69 +14976,54 @@ }, "criteriaMet": [ { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -15046,19 +15031,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -15066,29 +15056,34 @@ "title": "Clinical Decision Support" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, @@ -15101,14 +15096,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 49, @@ -15116,29 +15111,34 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -15146,57 +15146,57 @@ "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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.curemd.com/developer/fhir-apis.pdf" }, @@ -15210,9 +15210,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.curemd.com/developer/fhir-apis.pdf" } @@ -15254,34 +15254,24 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 52, @@ -15289,19 +15279,19 @@ "title": "Safety-Enhanced 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -15309,69 +15299,59 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -15379,19 +15359,24 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 26, @@ -15399,64 +15384,44 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device 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": 51, @@ -15464,9 +15429,24 @@ "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 8, @@ -15474,45 +15454,57 @@ "title": "Medication Allergy List" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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://www.curemd.com/developer/curemdapiguide.pdf" - }, { "criterion": { "id": 182, @@ -15521,6 +15513,14 @@ }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + }, { "criterion": { "id": 56, @@ -15567,14 +15567,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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, @@ -15582,14 +15577,9 @@ "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -15597,14 +15587,19 @@ "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": 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": 56, @@ -15612,29 +15607,39 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -15642,24 +15647,19 @@ "title": "Transitions of Care" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -15667,97 +15667,97 @@ "title": "Electronic Health Information Export" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "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": 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" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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" } ], "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.coresolutionsinc.com/web-service-api-documentation/" }, @@ -15771,9 +15771,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.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,49 +15815,19 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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)" - }, - { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 11, @@ -15865,9 +15835,9 @@ "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 7, @@ -15875,29 +15845,24 @@ "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 36, @@ -15905,24 +15870,64 @@ "title": "Integrity" }, { - "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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -15930,9 +15935,9 @@ "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": 167, @@ -15940,49 +15945,49 @@ "title": "Electronic Prescribing" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 37, @@ -15990,39 +15995,39 @@ "title": "Trusted Connection" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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" }, { - "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 52, @@ -16030,29 +16035,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -16118,14 +16118,19 @@ }, "criteriaMet": [ { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 2, @@ -16133,39 +16138,24 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 32, @@ -16173,24 +16163,19 @@ "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 172, @@ -16198,44 +16183,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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, @@ -16243,14 +16218,14 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 54, @@ -16258,14 +16233,19 @@ "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -16273,30 +16253,42 @@ "title": "Direct Project" }, { - "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" - }, { "criterion": { "id": 182, @@ -16305,6 +16297,14 @@ }, "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" + }, { "criterion": { "id": 181, @@ -16351,89 +16351,94 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 59, @@ -16441,14 +16446,9 @@ "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 28, @@ -16456,49 +16456,54 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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, @@ -16506,34 +16511,34 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -16541,39 +16546,34 @@ "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "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": 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": 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": 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, @@ -16581,17 +16581,17 @@ "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" } ], "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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16605,9 +16605,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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -16644,69 +16644,69 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -16714,74 +16714,74 @@ "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 35, @@ -16789,9 +16789,9 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 5, @@ -16799,29 +16799,29 @@ "title": "Demographics" }, { - "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" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 168, @@ -16829,65 +16829,65 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "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://digidms.com/documents/DigiDMS_EHR_API_Access.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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16932,54 +16932,54 @@ }, "criteriaMet": [ { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 43, @@ -16987,24 +16987,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, @@ -17012,84 +17012,84 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, @@ -17097,14 +17097,9 @@ "title": "Transitions of Care" }, { - "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": 9, @@ -17112,39 +17107,44 @@ "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 167, @@ -17152,19 +17152,19 @@ "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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" } ], "apiDocumentation": [ @@ -17230,54 +17230,49 @@ }, "criteriaMet": [ { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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" }, { - "id": 9, - "number": "170.315 (a)(9)", - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 44, @@ -17285,54 +17280,64 @@ "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -17340,9 +17345,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -17350,29 +17360,29 @@ "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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, @@ -17380,64 +17390,54 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 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": 29, - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -17449,14 +17449,6 @@ }, "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, @@ -17464,6 +17456,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://drcloudehr.com/drcloudehr-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" } ], "acb": "SLI Compliance" @@ -17503,14 +17503,9 @@ }, "criteriaMet": [ { - "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": 43, @@ -17518,19 +17513,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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, @@ -17538,49 +17538,39 @@ "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -17588,19 +17578,19 @@ "title": "Integrity" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -17608,24 +17598,14 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 44, @@ -17633,24 +17613,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 51, @@ -17658,40 +17633,65 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "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" } ], "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://drsdoc.com/FHIRapi" }, { "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" }, @@ -17741,64 +17741,64 @@ }, "criteriaMet": [ { - "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": 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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 1, @@ -17806,30 +17806,60 @@ "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 180, "number": "170.315 (g)(6)", @@ -17841,9 +17871,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 43, @@ -17851,44 +17886,24 @@ "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 53, @@ -17896,24 +17911,14 @@ "title": "Quality Management System" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -17921,14 +17926,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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 5, @@ -17939,17 +17939,17 @@ "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://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/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": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, @@ -17998,35 +17998,60 @@ "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" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -18034,39 +18059,54 @@ "title": "Amendments" }, { - "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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -18079,34 +18119,29 @@ "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, @@ -18114,24 +18149,19 @@ "title": "Accounting of Disclosures" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 33, @@ -18139,39 +18169,9 @@ "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": 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" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -18185,17 +18185,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://openapi.ehnote.com/" }, { "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://openapi.ehnote.com/" } @@ -18237,14 +18237,14 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 29, @@ -18252,29 +18252,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -18282,14 +18317,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -18297,9 +18342,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -18311,60 +18366,20 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -18372,52 +18387,37 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18431,9 +18431,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://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } @@ -18469,55 +18469,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 52, @@ -18525,24 +18510,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, @@ -18550,24 +18540,19 @@ "title": "Multi-Factor Authentication" }, { - "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, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -18575,34 +18560,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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" + "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, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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, @@ -18610,9 +18590,9 @@ "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": 54, @@ -18620,9 +18600,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -18630,19 +18615,34 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -18656,17 +18656,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://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" + "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,74 @@ }, "criteriaMet": [ { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 43, @@ -18788,44 +18783,44 @@ "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" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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, @@ -18833,9 +18828,14 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 26, @@ -18843,34 +18843,39 @@ "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" }, { - "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": 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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -18878,49 +18883,44 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -18986,29 +18986,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -19016,39 +19016,39 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, @@ -19056,54 +19056,54 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -19111,67 +19111,67 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" } ], "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.modmed.com/public-api-v2/" }, @@ -19185,9 +19185,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.modmed.com/public-api-v2/" } @@ -19224,24 +19224,29 @@ }, "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": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 56, @@ -19249,29 +19254,14 @@ "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": 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": 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, @@ -19279,54 +19269,49 @@ "title": "Application Access - All Data Request" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 172, @@ -19334,9 +19319,24 @@ "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": 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": 167, @@ -19344,29 +19344,39 @@ "title": "Electronic Prescribing" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 173, - "number": "170.315 (d)(2)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 59, @@ -19374,24 +19384,19 @@ "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -19399,35 +19404,35 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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://exscribemobile.com/MU/EhrApiV01/" + "value": "https://exscribe-prod-fhir.ema-api.com/modmed/root/r4/Home/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://exscribemobile.com/MU/EhrApiV01/" }, @@ -19472,9 +19477,14 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 165, @@ -19482,24 +19492,19 @@ "title": "Transitions of Care" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -19507,54 +19512,34 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 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": 171, @@ -19562,64 +19547,64 @@ "title": "Electronic Health Information Export" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -19627,9 +19612,9 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 25, @@ -19637,35 +19622,55 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "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": 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": 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" } ], "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/" }, @@ -19710,69 +19715,54 @@ }, "criteriaMet": [ { - "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": 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": 52, + "number": "170.315 (g)(3)", + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "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": 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": 2, @@ -19780,9 +19770,9 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -19790,69 +19780,69 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 26, @@ -19860,19 +19850,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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, @@ -19880,37 +19865,57 @@ "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": 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" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19924,9 +19929,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.modmed.com/public-api-v2/" } @@ -19968,44 +19973,64 @@ }, "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "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": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "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": 53, @@ -20013,14 +20038,19 @@ "title": "Quality Management System" }, { - "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": 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, @@ -20028,59 +20058,29 @@ "title": "Audit Report(s)" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -20088,27 +20088,32 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, @@ -20122,9 +20127,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": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" } @@ -20166,24 +20171,9 @@ }, "criteriaMet": [ { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, @@ -20191,44 +20181,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 12, @@ -20236,54 +20231,69 @@ "title": "Family Health History" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 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, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 167, @@ -20291,29 +20301,29 @@ "title": "Electronic Prescribing" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 170, @@ -20321,14 +20331,19 @@ "title": "Care Plan" }, { - "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": 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": 4, @@ -20336,14 +20351,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -20351,14 +20361,9 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -20429,19 +20434,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "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": 36, @@ -20449,34 +20444,19 @@ "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -20484,14 +20464,9 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 2, @@ -20499,19 +20474,9 @@ "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 39, @@ -20519,74 +20484,74 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -20594,14 +20559,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -20609,9 +20594,29 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, @@ -20620,14 +20625,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.enablemyhealth.com" - }, { "criterion": { "id": 181, @@ -20643,6 +20640,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://apitest.enablemyhealth.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.enablemyhealth.com" } ], "acb": "SLI Compliance" @@ -20682,14 +20687,14 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -20697,244 +20702,244 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 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": 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": 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, + "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -20946,14 +20951,6 @@ }, "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, @@ -20961,6 +20958,14 @@ "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" + }, + "value": "https://www.endosoft.com/fhir" } ], "acb": "SLI Compliance" @@ -21000,99 +21005,89 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 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": 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" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -21100,59 +21095,64 @@ "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" }, { - "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" + "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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -21160,34 +21160,39 @@ "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -21248,9 +21253,14 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -21258,24 +21268,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -21283,29 +21278,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -21313,34 +21303,24 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -21348,49 +21328,49 @@ "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, @@ -21398,24 +21378,19 @@ "title": "Family Health History" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 21, @@ -21423,30 +21398,52 @@ "title": "Data Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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" } ], "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": 181, @@ -21462,6 +21459,14 @@ "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" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -21495,30 +21500,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -21531,29 +21521,24 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 1, @@ -21561,44 +21546,29 @@ "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -21606,24 +21576,44 @@ "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" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, @@ -21631,59 +21621,74 @@ "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -21744,44 +21749,39 @@ }, "criteriaMet": [ { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 172, @@ -21789,19 +21789,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 2, @@ -21809,14 +21814,9 @@ "title": "CPOE - Laboratory" }, { - "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": 171, @@ -21824,29 +21824,49 @@ "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": 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": 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": 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": 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": 59, @@ -21854,59 +21874,49 @@ "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -21914,24 +21924,19 @@ "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -21945,17 +21950,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" } @@ -21992,114 +21997,74 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "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, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 166, @@ -22107,14 +22072,9 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, @@ -22122,90 +22082,135 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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": 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" }, @@ -22250,44 +22255,9 @@ }, "criteriaMet": [ { - "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, - "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": 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": 14, @@ -22295,24 +22265,24 @@ "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -22320,49 +22290,69 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 53, @@ -22370,19 +22360,29 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 177, @@ -22390,9 +22390,14 @@ "title": "Multi-Factor Authentication" }, { - "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": 5, @@ -22400,47 +22405,55 @@ "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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" } ], "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, @@ -22456,14 +22469,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" @@ -22497,85 +22502,65 @@ "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" }, - { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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, @@ -22583,59 +22568,59 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 2, @@ -22643,19 +22628,29 @@ "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 172, @@ -22663,32 +22658,50 @@ "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 181, @@ -22704,14 +22717,6 @@ "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://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -22746,44 +22751,24 @@ }, "criteriaMet": [ { - "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": 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" + "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": 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": 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": 9, @@ -22791,24 +22776,24 @@ "title": "Clinical Decision Support" }, { - "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": 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": 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": 56, @@ -22816,124 +22801,144 @@ "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, { "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -22994,14 +22999,19 @@ }, "criteriaMet": [ { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -23009,69 +23019,109 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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, @@ -23079,9 +23129,9 @@ "title": "Application Access - All Data Request" }, { - "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": 35, @@ -23089,9 +23139,9 @@ "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": 171, @@ -23104,84 +23154,39 @@ "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" } ], "apiDocumentation": [ @@ -23195,17 +23200,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://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" } @@ -23242,44 +23247,34 @@ }, "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 54, @@ -23287,9 +23282,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 53, @@ -23302,29 +23297,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, @@ -23332,74 +23327,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 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" }, { "id": 178, @@ -23407,19 +23407,24 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 34, @@ -23427,12 +23432,20 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 181, @@ -23448,14 +23461,6 @@ "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" - }, - "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -23490,9 +23495,14 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 166, @@ -23500,49 +23510,59 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 59, @@ -23550,79 +23570,79 @@ "title": "Direct Project" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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" }, { - "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" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, @@ -23630,65 +23650,42 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, { "criterion": { "id": 182, @@ -23704,6 +23701,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -23738,9 +23743,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -23748,59 +23753,64 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 29, @@ -23808,124 +23818,119 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "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" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -23939,17 +23944,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://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" } @@ -23985,15 +23990,20 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -24001,34 +24011,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 35, @@ -24036,14 +24036,19 @@ "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" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 51, @@ -24051,44 +24056,34 @@ "title": "Automated Measure Calculation" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 5, @@ -24096,64 +24091,69 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, @@ -24161,19 +24161,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -24187,17 +24192,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" } @@ -24239,19 +24244,14 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, @@ -24259,24 +24259,19 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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, @@ -24284,69 +24279,59 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 44, @@ -24364,85 +24349,97 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, { "criterion": { "id": 182, @@ -24458,6 +24455,14 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -24497,54 +24502,59 @@ }, "criteriaMet": [ { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 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": 166, @@ -24552,14 +24562,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 171, @@ -24567,44 +24582,34 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -24612,9 +24617,9 @@ "title": "Amendments" }, { - "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": 2, @@ -24627,14 +24632,9 @@ "title": "Demographics" }, { - "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": 54, @@ -24642,40 +24642,45 @@ "title": "Accessibility-Centered 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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://datalinksoftware.com/DataLink-FHIR-API-Documentation.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://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" }, @@ -24725,29 +24730,44 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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, @@ -24755,14 +24775,14 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 37, @@ -24770,19 +24790,9 @@ "title": "Trusted Connection" }, { - "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": 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": 166, @@ -24790,24 +24800,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -24815,84 +24825,79 @@ "title": "Demographics" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -24906,17 +24911,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.myeyecarerecords.com/api" }, { "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.myeyecarerecords.com/api" } @@ -24958,39 +24963,29 @@ }, "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": 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" - }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -25001,6 +24996,16 @@ "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "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" } ], "apiDocumentation": [ @@ -25050,89 +25055,74 @@ }, "criteriaMet": [ { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 12, - "number": "170.315 (a)(12)", - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -25145,29 +25135,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 28, @@ -25180,34 +25175,44 @@ "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 182, @@ -25215,44 +25220,44 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -25266,17 +25271,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": "http://academy.practicesuite.com/mu-api/" }, { "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/" } @@ -25313,39 +25318,44 @@ }, "criteriaMet": [ { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 165, @@ -25353,19 +25363,19 @@ "title": "Transitions of Care" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, @@ -25373,19 +25383,9 @@ "title": "Patient Health Information Capture" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -25393,44 +25393,49 @@ "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": 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": 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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -25438,29 +25443,24 @@ "title": "Clinical Decision Support" }, { - "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, + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -25468,14 +25468,19 @@ "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 5, @@ -25483,29 +25488,29 @@ "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 181, @@ -25513,12 +25518,20 @@ "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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" + }, + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + }, { "criterion": { "id": 181, @@ -25534,14 +25547,6 @@ "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,84 +25586,84 @@ }, "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -25666,24 +25671,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 165, @@ -25691,19 +25686,24 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -25711,14 +25711,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 166, @@ -25726,30 +25731,30 @@ "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": 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" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -25794,59 +25799,79 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -25859,114 +25884,99 @@ "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)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 2, @@ -25974,40 +25984,35 @@ "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": 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": 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" } ], "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://careconnect-uat.netsmartcloud.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://careconnect-uat.netsmartcloud.com/" }, @@ -26052,34 +26057,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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, @@ -26087,44 +26087,39 @@ "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -26132,14 +26127,14 @@ "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" }, { - "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": 174, @@ -26147,59 +26142,44 @@ "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": 9, + "number": "170.315 (a)(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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -26207,27 +26187,60 @@ "title": "Transitions of Care" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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, + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "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://careconnect.netsmartcloud.com/" + }, { "criterion": { "id": 182, @@ -26243,14 +26256,6 @@ "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,34 +26290,9 @@ }, "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -26320,9 +26300,9 @@ "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": 182, @@ -26330,19 +26310,14 @@ "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": 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" }, { "id": 26, @@ -26350,29 +26325,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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, @@ -26380,19 +26350,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 174, @@ -26400,19 +26365,14 @@ "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -26420,9 +26380,24 @@ "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 59, @@ -26430,29 +26405,29 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 56, @@ -26460,19 +26435,49 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -26486,17 +26491,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://careconnect-uat.netsmartcloud.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://careconnect-uat.netsmartcloud.com/" } @@ -26538,29 +26543,9 @@ }, "criteriaMet": [ { - "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, - "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": 178, @@ -26568,29 +26553,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 54, @@ -26598,39 +26583,34 @@ "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 174, @@ -26638,14 +26618,19 @@ "title": "Audit Report(s)" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 13, @@ -26653,29 +26638,29 @@ "title": "Patient-Specific Education Resources" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, @@ -26683,9 +26668,19 @@ "title": "CPOE - Laboratory" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 9, @@ -26693,19 +26688,29 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 181, @@ -26713,40 +26718,32 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "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, @@ -26762,6 +26759,14 @@ "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" @@ -26796,69 +26801,59 @@ }, "criteriaMet": [ { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 39, @@ -26866,34 +26861,29 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 180, @@ -26901,24 +26891,19 @@ "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -26926,39 +26911,49 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "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": 12, @@ -26966,30 +26961,32 @@ "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" - }, { "criterion": { "id": 182, @@ -27005,6 +27002,14 @@ "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" @@ -27039,39 +27044,34 @@ }, "criteriaMet": [ { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 33, @@ -27079,9 +27079,14 @@ "title": "Automatic Access Time-out" }, { - "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": 178, @@ -27089,14 +27094,14 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -27104,29 +27109,19 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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" }, { "id": 32, @@ -27134,29 +27129,34 @@ "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" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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, @@ -27164,14 +27164,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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" }, { "id": 35, @@ -27179,19 +27174,14 @@ "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": 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": 176, @@ -27199,45 +27189,60 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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" } ], "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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, @@ -27287,49 +27292,49 @@ }, "criteriaMet": [ { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -27337,124 +27342,124 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -27468,17 +27473,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://www.geesemed.com/api.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://www.geesemed.com/api.html" } @@ -27520,124 +27525,114 @@ }, "criteriaMet": [ { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -27645,29 +27640,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 15, @@ -27675,79 +27675,84 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 9, + "number": "170.315 (a)(9)", + "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": 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": 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": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -27761,19 +27766,19 @@ }, { "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://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://www.geniusdoc.com/API.php" }, { "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://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://www.geniusdoc.com/API.php" } ], "acb": "SLI Compliance" @@ -27813,89 +27818,109 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "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": 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": 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": 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": 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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 52, @@ -27903,34 +27928,39 @@ "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 176, @@ -27938,39 +27968,14 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 37, @@ -27978,14 +27983,14 @@ "title": "Trusted Connection" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -27993,25 +27998,17 @@ "title": "Automated Measure Calculation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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" - }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" - }, { "criterion": { "id": 181, @@ -28020,6 +28017,14 @@ }, "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" + }, + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, { "criterion": { "id": 56, @@ -28061,39 +28066,34 @@ }, "criteriaMet": [ { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 2, @@ -28101,64 +28101,64 @@ "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 43, @@ -28166,9 +28166,24 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -28181,77 +28196,75 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, { "criterion": { "id": 181, @@ -28267,14 +28280,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-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" @@ -28309,49 +28314,39 @@ }, "criteriaMet": [ { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, @@ -28359,44 +28354,54 @@ "title": "CPOE - Laboratory" }, { - "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": 14, - "number": "170.315 (a)(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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 29, @@ -28404,14 +28409,14 @@ "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 165, @@ -28419,24 +28424,39 @@ "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -28444,19 +28464,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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" }, { - "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": 12, @@ -28464,39 +28489,19 @@ "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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" } ], "apiDocumentation": [ @@ -28557,49 +28562,49 @@ }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -28607,49 +28612,59 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -28657,34 +28672,34 @@ "title": "Multi-Factor Authentication" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 25, @@ -28692,70 +28707,52 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28764,6 +28761,14 @@ }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-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/" + }, { "criterion": { "id": 181, @@ -28810,24 +28815,19 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, @@ -28835,39 +28835,34 @@ "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 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": 39, @@ -28875,14 +28870,29 @@ "title": "Accounting of Disclosures" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 52, @@ -28890,54 +28900,74 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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, @@ -28945,14 +28975,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 44, @@ -28960,29 +28985,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 182, @@ -28990,64 +29010,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -29113,44 +29118,34 @@ }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -29158,9 +29153,9 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 15, @@ -29168,59 +29163,54 @@ "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": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 171, @@ -29228,44 +29218,44 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 167, @@ -29273,19 +29263,34 @@ "title": "Electronic Prescribing" }, { - "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": 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" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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, @@ -29296,9 +29301,9 @@ "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://developers.greenwayhealth.com/developer-platform" }, @@ -29312,9 +29317,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://developers.greenwayhealth.com/developer-platform" } @@ -29351,24 +29356,34 @@ }, "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -29381,39 +29396,34 @@ "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -29421,49 +29431,49 @@ "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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" + "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": 59, @@ -29471,72 +29481,75 @@ "title": "Direct Project" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + }, { "criterion": { "id": 182, @@ -29552,14 +29565,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29594,54 +29599,54 @@ }, "criteriaMet": [ { - "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": 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" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -29649,34 +29654,39 @@ "title": "Application Access - Patient Selection" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 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": 43, @@ -29684,29 +29694,24 @@ "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": 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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 39, @@ -29714,29 +29719,34 @@ "title": "Accounting of Disclosures" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -29744,50 +29754,37 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "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": 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" - }, - "value": "https://developers.greenwayhealth.com/developer-platform" - }, { "criterion": { "id": 56, @@ -29796,6 +29793,14 @@ }, "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, + { + "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": 181, @@ -29837,19 +29842,9 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 35, @@ -29857,74 +29852,94 @@ "title": "End-User Device Encryption" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "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": 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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -29932,92 +29947,90 @@ "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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" }, { - "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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://developers.greenwayhealth.com/developer-platform" + }, { "criterion": { "id": 56, @@ -30033,14 +30046,6 @@ "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developers.greenwayhealth.com/developer-platform" } ], "acb": "Drummond Group" @@ -30085,14 +30090,24 @@ "title": "Integrity" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 25, @@ -30100,24 +30115,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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, @@ -30125,44 +30140,39 @@ "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 46, - "number": "170.315 (f)(4)", - "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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 12, @@ -30170,74 +30180,59 @@ "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 15, @@ -30245,29 +30240,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, @@ -30275,75 +30275,80 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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" }, { - "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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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" } ], "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://hcswebportal.corporate.hcsinc.net/HCSClinicals_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://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, @@ -30388,94 +30393,99 @@ }, "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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, @@ -30483,19 +30493,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 43, @@ -30503,14 +30518,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 44, @@ -30518,24 +30533,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 26, @@ -30543,39 +30553,39 @@ "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "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": 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": 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": 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": 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": 165, @@ -30583,19 +30593,9 @@ "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": 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, @@ -30603,39 +30603,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -30649,17 +30654,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://hcswebportal.corporate.hcsinc.net/hcsclinicals_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://hcswebportal.corporate.hcsinc.net/hcsclinicals_fhir" } @@ -30701,104 +30706,99 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -30806,24 +30806,29 @@ "title": "Demographics" }, { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -30831,85 +30836,77 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, - "number": "170.315 (d)(4)", - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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://harrisambulatory.com/caretracker-api-documentation/" - }, { "criterion": { "id": 56, @@ -30925,6 +30922,14 @@ "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" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -30964,24 +30969,34 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 12, @@ -30989,14 +31004,9 @@ "title": "Family Health History" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -31004,24 +31014,9 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -31029,29 +31024,24 @@ "title": "Implantable Device List" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -31059,14 +31049,19 @@ "title": "Accessibility-Centered Design" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 25, @@ -31074,49 +31069,69 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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" }, { "id": 53, @@ -31124,22 +31139,20 @@ "title": "Quality Management System" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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://cmpl.aidbox.app/documentation" + }, { "criterion": { "id": 181, @@ -31155,14 +31168,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://cmpl.aidbox.app/documentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -31202,89 +31207,79 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" }, { "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": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 51, @@ -31292,14 +31287,14 @@ "title": "Automated Measure Calculation" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 171, @@ -31307,24 +31302,24 @@ "title": "Electronic Health Information 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -31332,49 +31327,54 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 176, @@ -31382,24 +31382,29 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 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" } ], "apiDocumentation": [ @@ -31465,29 +31470,34 @@ }, "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 12, @@ -31495,99 +31505,104 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 41, @@ -31595,44 +31610,34 @@ "title": "Secure Messaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 9, @@ -31640,87 +31645,87 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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" } ], "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://ipclinical.com/documentation/IPClinical-api-documentation.pdf" }, @@ -31734,9 +31739,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://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } @@ -31777,160 +31782,120 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 37, @@ -31938,14 +31903,24 @@ "title": "Trusted Connection" }, { - "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" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 8, @@ -31953,14 +31928,34 @@ "title": "Medication Allergy 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 7, @@ -31968,49 +31963,59 @@ "title": "Medication List" }, { - "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": 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" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" + }, + { + "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://inpracsys.com/fhir" + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" }, { "criterion": { @@ -32022,11 +32027,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://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" + "value": "https://inpracsys.com/fhir" } ], "acb": "SLI Compliance" @@ -32065,60 +32070,70 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -32126,29 +32141,29 @@ "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -32161,14 +32176,14 @@ "title": "Automatic Access Time-out" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -32176,24 +32191,29 @@ "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": 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": 52, + "number": "170.315 (g)(3)", + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 167, @@ -32201,39 +32221,34 @@ "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 36, @@ -32241,19 +32256,9 @@ "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": 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": 171, @@ -32261,19 +32266,19 @@ "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -32338,25 +32343,50 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 29, @@ -32364,19 +32394,24 @@ "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": 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": 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": 54, @@ -32384,19 +32419,44 @@ "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, @@ -32404,9 +32464,9 @@ "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 182, @@ -32414,102 +32474,55 @@ "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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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" + }, { "criterion": { "id": 181, @@ -32525,14 +32538,6 @@ "title": "Application Access - Patient Selection" }, "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" - }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } ], "acb": "Drummond Group" @@ -32572,49 +32577,44 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "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": 56, @@ -32622,24 +32622,24 @@ "title": "Application Access - Patient Selection" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 182, @@ -32652,39 +32652,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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)" - }, - { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 5, @@ -32692,27 +32677,55 @@ "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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://onc.chntechsolutions.com/home/" + }, { "criterion": { "id": 181, @@ -32728,14 +32741,6 @@ "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" @@ -32774,45 +32779,20 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 176, @@ -32820,14 +32800,14 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -32840,19 +32820,44 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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, @@ -32860,22 +32865,22 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -32889,9 +32894,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" } @@ -32928,69 +32933,59 @@ }, "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -32998,9 +32993,14 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 178, @@ -33008,19 +33008,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -33034,17 +33039,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://openapitest.intelichart.com/Help" }, { "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://openapitest.intelichart.com/Help" } @@ -33086,29 +33091,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -33116,89 +33111,84 @@ "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 180, - "number": "170.315 (g)(6)", - "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": 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, + "number": "170.315 (g)(2)", + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -33206,19 +33196,24 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -33226,29 +33221,39 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -33314,99 +33319,84 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "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, @@ -33414,19 +33404,24 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 54, @@ -33434,24 +33429,34 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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": 168, @@ -33459,29 +33464,29 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, @@ -33489,44 +33494,44 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -33591,45 +33596,45 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 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": 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": 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)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -33647,7 +33652,7 @@ ] }, { - "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", + "listSourceURL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", "softwareProducts": [ { "id": 11283, @@ -33678,80 +33683,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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" - }, - { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 171, @@ -33759,9 +33729,14 @@ "title": "Electronic Health Information Export" }, { - "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": 54, @@ -33773,208 +33748,50 @@ "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": 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": 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://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" - }, - { - "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" - } - ], - "acb": "Drummond Group" - }, - { - "id": 10962, - "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1926, - "name": "DSS, Inc." - }, - "product": { - "id": 3642, - "name": "Juno ConnectEHR" - }, - "version": { - "id": 8556, - "name": "22" - }, - "certificationDate": "2022-08-17", - "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" - }, - "criteriaMet": [ - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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, + "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -33982,42 +33799,27 @@ "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": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "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://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/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://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" }, { "criterion": { @@ -34025,16 +33827,11 @@ "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" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { "id": 11301, "chplProductNumber": "15.04.04.2925.Juno.23.01.1.230620", @@ -34065,64 +33862,64 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 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": 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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -34130,24 +33927,19 @@ "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": 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": 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": 12, @@ -34155,19 +33947,29 @@ "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": 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": 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": 180, @@ -34175,59 +33977,54 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "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" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "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" } ], "apiDocumentation": [ @@ -34245,11 +34042,11 @@ ] }, { - "listSourceURL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", "softwareProducts": [ { - "id": 10864, - "chplProductNumber": "15.04.04.2925.JESS.03.02.1.220304", + "id": 10962, + "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", "edition": { "id": 3, "name": "2015" @@ -34263,48 +34060,28 @@ "name": "DSS, Inc." }, "product": { - "id": 3539, - "name": "Juno Emergency Services Solution" + "id": 3642, + "name": "Juno ConnectEHR" }, "version": { - "id": 8462, - "name": "v3.2" + "id": 8556, + "name": "22" }, - "certificationDate": "2022-03-04", + "certificationDate": "2022-08-17", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 44, @@ -34317,54 +34094,232 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "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": 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://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" + }, + "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" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "softwareProducts": [ + { + "id": 10864, + "chplProductNumber": "15.04.04.2925.JESS.03.02.1.220304", + "edition": { + "id": 3, + "name": "2015" + }, + "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": 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": 54, + "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -34372,14 +34327,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 26, @@ -34387,14 +34342,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 3, @@ -34402,14 +34357,19 @@ "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": 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": 173, @@ -34417,29 +34377,74 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 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": 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" } ], "apiDocumentation": [ @@ -34489,29 +34494,39 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -34519,24 +34534,14 @@ "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": 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" } ], "apiDocumentation": [ @@ -34594,29 +34599,29 @@ }, "criteriaMet": [ { - "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": 56, - "number": "170.315 (g)(7)", - "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -34624,24 +34629,19 @@ "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 176, @@ -34649,39 +34649,44 @@ "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 167, @@ -34689,19 +34694,39 @@ "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -34709,14 +34734,9 @@ "title": "Trusted Connection" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, @@ -34724,14 +34744,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 165, @@ -34739,42 +34764,30 @@ "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" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" + }, + "value": "https://www.mdlogic.com/solutions/api-documentation" + }, { "criterion": { "id": 182, @@ -34790,14 +34803,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.mdlogic.com/solutions/api-documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" @@ -34832,24 +34837,19 @@ }, "criteriaMet": [ { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 176, @@ -34857,9 +34857,9 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 9, @@ -34867,19 +34867,24 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -34887,24 +34892,24 @@ "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -34912,9 +34917,14 @@ "title": "Trusted Connection" }, { - "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": 36, @@ -34922,14 +34932,14 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -34937,9 +34947,9 @@ "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": 53, @@ -34947,59 +34957,49 @@ "title": "Quality Management System" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 56, @@ -35007,9 +35007,14 @@ "title": "Application Access - Patient Selection" }, { - "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" } ], "apiDocumentation": [ @@ -35075,39 +35080,34 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -35115,64 +35115,64 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -35180,39 +35180,44 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -35278,29 +35283,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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -35308,139 +35308,139 @@ "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -35448,14 +35448,19 @@ "title": "Emergency Access" }, { - "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": 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": 167, @@ -35463,55 +35468,47 @@ "title": "Electronic Prescribing" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "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, @@ -35527,6 +35524,14 @@ "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 +35571,34 @@ }, "criteriaMet": [ { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -35606,69 +35611,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 171, @@ -35676,64 +35676,64 @@ "title": "Electronic Health Information 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 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": 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": 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": 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": 3, @@ -35741,35 +35741,40 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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)" } ], "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.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, { "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.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, @@ -35819,49 +35824,59 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -35869,14 +35884,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -35884,64 +35894,69 @@ "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "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": 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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { - "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": 35, @@ -35954,49 +35969,44 @@ "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, @@ -36004,25 +36014,12 @@ "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": 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://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" - }, { "criterion": { "id": 181, @@ -36038,6 +36035,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" } ], "acb": "Drummond Group" @@ -36077,54 +36082,29 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 176, @@ -36132,29 +36112,24 @@ "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 43, @@ -36162,29 +36137,34 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 59, @@ -36192,9 +36172,24 @@ "title": "Direct Project" }, { - "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": 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": 26, @@ -36202,19 +36197,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -36222,54 +36222,59 @@ "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -36277,40 +36282,40 @@ "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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" } ], "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.medent.com/onc/" }, { "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.medent.com/onc/" }, @@ -36354,70 +36359,50 @@ "name": "Active" }, "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 165, @@ -36425,29 +36410,19 @@ "title": "Transitions of Care" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -36455,29 +36430,24 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 173, @@ -36485,29 +36455,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 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": 43, @@ -36515,29 +36480,24 @@ "title": "Transmission to Immunization 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" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 1, @@ -36545,9 +36505,9 @@ "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": 172, @@ -36555,35 +36515,72 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" + }, + { + "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://www.medent.com/onc/" - }, { "criterion": { "id": 181, @@ -36599,6 +36596,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.medent.com/onc/" } ], "acb": "Drummond Group" @@ -36638,24 +36643,14 @@ }, "criteriaMet": [ { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, @@ -36663,9 +36658,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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, @@ -36678,9 +36673,29 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -36688,14 +36703,19 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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, @@ -36703,14 +36723,9 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -36718,19 +36733,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 42, @@ -36738,29 +36743,34 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 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": 173, @@ -36773,39 +36783,34 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -36871,24 +36876,14 @@ "title": "Implantable Device List" }, { - "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": 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": 29, @@ -36901,29 +36896,34 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 52, @@ -36931,34 +36931,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, @@ -36966,14 +36971,9 @@ "title": "Family Health History" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, @@ -36981,62 +36981,75 @@ "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 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" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.yourcareinteract.com/documentation" + }, { "criterion": { "id": 181, @@ -37052,14 +37065,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.yourcareinteract.com/documentation" } ], "acb": "Drummond Group" @@ -37098,65 +37103,65 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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" }, { - "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": 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": 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": 52, @@ -37164,130 +37169,130 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": [ { "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" }, { "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" }, @@ -37332,19 +37337,24 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 48, @@ -37352,24 +37362,19 @@ "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": 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": 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": 35, @@ -37377,19 +37382,19 @@ "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -37397,34 +37402,34 @@ "title": "Safety-Enhanced 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 56, @@ -37432,82 +37437,90 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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" } ], "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, @@ -37523,14 +37536,6 @@ "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" @@ -37565,24 +37570,24 @@ }, "criteriaMet": [ { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -37590,14 +37595,34 @@ "title": "Demographics" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -37605,14 +37630,14 @@ "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": 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": 173, @@ -37620,19 +37645,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, @@ -37640,64 +37660,49 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, @@ -37705,19 +37710,14 @@ "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": 32, + "number": "170.315 (d)(4)", + "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": 26, @@ -37725,22 +37725,27 @@ "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": 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": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37754,9 +37759,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -37792,60 +37797,80 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -37853,89 +37878,64 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 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": 171, @@ -37943,9 +37943,14 @@ "title": "Electronic Health Information Export" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 25, @@ -37953,35 +37958,35 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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" + "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" }, @@ -38026,84 +38031,69 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -38111,14 +38101,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 33, @@ -38126,29 +38121,34 @@ "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -38156,34 +38156,39 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, @@ -38191,30 +38196,30 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { "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" }, @@ -38259,69 +38264,69 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, @@ -38329,19 +38334,24 @@ "title": "Amendments" }, { - "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" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 3, @@ -38349,39 +38359,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -38389,19 +38404,19 @@ "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -38409,29 +38424,19 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": [ @@ -38445,17 +38450,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://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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38492,29 +38497,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 29, @@ -38522,64 +38517,59 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -38587,34 +38577,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, @@ -38622,9 +38622,19 @@ "title": "Accounting of Disclosures" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -38632,39 +38642,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -38725,54 +38730,49 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -38780,14 +38780,14 @@ "title": "Amendments" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 26, @@ -38795,99 +38795,94 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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, + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 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": 39, @@ -38895,12 +38890,30 @@ "title": "Accounting of Disclosures" }, { - "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": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, @@ -38916,14 +38929,6 @@ "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" @@ -38958,54 +38963,54 @@ }, "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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" }, { - "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": 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": 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": 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": 25, @@ -39013,9 +39018,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 167, @@ -39023,19 +39033,14 @@ "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -39043,40 +39048,50 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 32, "number": "170.315 (d)(4)", @@ -39088,44 +39103,34 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -39185,15 +39190,45 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 37, @@ -39201,69 +39236,59 @@ "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 36, @@ -39271,34 +39296,39 @@ "title": "Integrity" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 174, @@ -39306,14 +39336,9 @@ "title": "Audit Report(s)" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -39321,50 +39346,22 @@ "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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, @@ -39380,6 +39377,14 @@ "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" @@ -39414,49 +39419,49 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -39464,137 +39469,137 @@ "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39608,9 +39613,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39647,119 +39652,104 @@ }, "criteriaMet": [ { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 181, @@ -39767,49 +39757,64 @@ "title": "Application Access - All Data Request" }, { - "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": 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, + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 54, + "number": "170.315 (g)(5)", + "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": 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" } ], "apiDocumentation": [ @@ -39823,17 +39828,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://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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39870,34 +39875,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -39905,39 +39905,74 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "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": 37, @@ -39945,9 +39980,9 @@ "title": "Trusted Connection" }, { - "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": 39, @@ -39955,9 +39990,9 @@ "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": 171, @@ -39965,19 +40000,29 @@ "title": "Electronic Health Information Export" }, { - "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" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 48, @@ -39985,64 +40030,24 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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" } ], "apiDocumentation": [ @@ -40103,29 +40108,39 @@ }, "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 181, @@ -40133,14 +40148,19 @@ "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 56, @@ -40148,19 +40168,9 @@ "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": 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": 9, @@ -40178,49 +40188,34 @@ "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 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": 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": 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, @@ -40228,9 +40223,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": 51, @@ -40238,47 +40233,65 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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" } ], "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, @@ -40294,14 +40307,6 @@ "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" @@ -40336,74 +40341,59 @@ }, "criteriaMet": [ { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 14, @@ -40411,29 +40401,24 @@ "title": "Implantable Device List" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 29, @@ -40441,49 +40426,69 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 39, @@ -40491,32 +40496,32 @@ "title": "Accounting of Disclosures" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -40530,9 +40535,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -40569,14 +40574,9 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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, @@ -40584,29 +40584,34 @@ "title": "Automated Measure Calculation" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 180, - "number": "170.315 (g)(6)", - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -40614,24 +40619,29 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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, @@ -40639,29 +40649,29 @@ "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40669,49 +40679,49 @@ "title": "Family Health History" }, { - "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": 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" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -40719,40 +40729,27 @@ "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" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 181, @@ -40768,6 +40765,14 @@ "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,24 +40807,54 @@ }, "criteriaMet": [ { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 173, @@ -40827,24 +40862,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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, @@ -40852,19 +40887,19 @@ "title": "CPOE - Laboratory" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 25, @@ -40872,34 +40907,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 34, @@ -40907,29 +40937,29 @@ "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -40937,44 +40967,19 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -40988,17 +40993,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://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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41035,99 +41040,84 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -41135,19 +41125,19 @@ "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 4, @@ -41155,19 +41145,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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -41175,45 +41165,60 @@ "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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" } ], "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" }, @@ -41263,19 +41268,24 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 178, @@ -41283,29 +41293,24 @@ "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": 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": 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": 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, @@ -41313,29 +41318,19 @@ "title": "Emergency Access" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 43, @@ -41348,44 +41343,49 @@ "title": "Trusted Connection" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 3, @@ -41393,14 +41393,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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" }, { "id": 171, @@ -41408,19 +41413,19 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -41428,27 +41433,35 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, @@ -41464,14 +41477,6 @@ "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,44 +41516,44 @@ }, "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": 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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 173, @@ -41556,19 +41561,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 42, @@ -41581,99 +41576,104 @@ "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -41681,22 +41681,27 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, @@ -41710,9 +41715,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.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } @@ -41754,44 +41759,54 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -41799,39 +41814,34 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -41839,44 +41849,44 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -41884,19 +41894,24 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 56, @@ -41904,57 +41919,55 @@ "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, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "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" + }, { "criterion": { "id": 56, @@ -41970,14 +41983,6 @@ "title": "Standardized API for Patient and Population Services" }, "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" - }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -42011,70 +42016,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 29, @@ -42087,19 +42047,29 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -42107,29 +42077,24 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 3, @@ -42137,29 +42102,69 @@ "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 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": 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": 12, @@ -42167,24 +42172,24 @@ "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": [ @@ -42250,24 +42255,24 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -42275,114 +42280,119 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 26, @@ -42390,29 +42400,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 166, @@ -42420,42 +42420,55 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 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": 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://documents.maximus.care" + }, { "criterion": { "id": 56, @@ -42471,14 +42484,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documents.maximus.care" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://documents.maximus.care" } ], "acb": "SLI Compliance" @@ -42523,39 +42528,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -42563,59 +42558,59 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 2, @@ -42623,24 +42618,24 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 34, @@ -42653,60 +42648,70 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.mhealthaz.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.mhealthaz.com" } @@ -42748,159 +42753,159 @@ }, "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 176, + "number": "170.315 (d)(12)", + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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" + "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": 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" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -42908,14 +42913,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 167, @@ -42927,28 +42932,36 @@ "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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" + }, + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, @@ -42964,14 +42977,6 @@ "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "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" } ], "acb": "Drummond Group" @@ -43011,64 +43016,64 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 178, @@ -43076,39 +43081,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 54, @@ -43116,19 +43126,9 @@ "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": 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, @@ -43136,49 +43136,49 @@ "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": 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": 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": 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": 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -43186,34 +43186,39 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -43227,17 +43232,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://www.viewmymed.com/api/usage.php" }, { "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://www.viewmymed.com/api/usage.php" } @@ -43279,19 +43284,29 @@ }, "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" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "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, @@ -43299,59 +43314,44 @@ "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": 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": 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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -43359,9 +43359,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 172, @@ -43369,29 +43369,34 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -43399,54 +43404,49 @@ "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": 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": 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": 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": 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": 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": 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": 176, @@ -43454,19 +43454,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -43474,22 +43464,37 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, @@ -43503,9 +43508,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://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } @@ -43547,24 +43552,24 @@ }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 37, @@ -43572,39 +43577,44 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 173, @@ -43612,24 +43622,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 26, @@ -43637,39 +43657,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -43677,19 +43697,24 @@ "title": "Application Access - All Data Request" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -43697,34 +43722,19 @@ "title": "Automatic Access Time-out" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 35, @@ -43732,30 +43742,17 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://medi-ehr.com/public-fhir-api" - }, { "criterion": { "id": 181, @@ -43771,6 +43768,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://medi-ehr.com/compliance" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://medi-ehr.com/public-fhir-api" } ], "acb": "SLI Compliance" @@ -43815,19 +43820,24 @@ "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -43835,9 +43845,14 @@ "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -43845,49 +43860,54 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 171, @@ -43895,79 +43915,84 @@ "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 4, @@ -43975,14 +44000,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 15, @@ -43990,39 +44015,19 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -44036,19 +44041,19 @@ }, { "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://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + "value": "https://docs.medifusion.com/" }, { "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.medifusion.com/" + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" } ], "acb": "SLI Compliance" @@ -44088,94 +44093,74 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -44183,59 +44168,54 @@ "title": "Transitions of Care" }, { - "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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, + { + "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 46, @@ -44243,19 +44223,9 @@ "title": "Transmission to Cancer Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 15, @@ -44268,42 +44238,85 @@ "title": "Emergency Access" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" + }, { "criterion": { "id": 56, @@ -44319,14 +44332,6 @@ "title": "Application Access - All Data Request" }, "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" } ], "acb": "SLI Compliance" @@ -44366,24 +44371,44 @@ }, "criteriaMet": [ { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "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": 180, @@ -44391,54 +44416,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, @@ -44446,64 +44466,44 @@ "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "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)" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -44511,90 +44511,95 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 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/MedicsDAExtAPI/Home/Help" }, { "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://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" }, @@ -44644,14 +44649,34 @@ }, "criteriaMet": [ { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -44659,14 +44684,19 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -44679,59 +44709,49 @@ "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 52, @@ -44739,49 +44759,49 @@ "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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -44789,19 +44809,9 @@ "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": 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, @@ -44809,42 +44819,37 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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" } ], "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://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" }, @@ -44858,9 +44863,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://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } @@ -44902,19 +44907,9 @@ }, "criteriaMet": [ { - "id": 176, - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -44922,14 +44917,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -44937,9 +44932,9 @@ "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": 29, @@ -44947,9 +44942,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "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)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -44999,29 +45004,29 @@ }, "criteriaMet": [ { - "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 1, @@ -45029,14 +45034,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 59, @@ -45044,39 +45044,49 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -45084,89 +45094,89 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 46, @@ -45174,38 +45184,33 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { @@ -45218,9 +45223,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://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45257,94 +45262,124 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization 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": 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": 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": 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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 36, @@ -45352,19 +45387,24 @@ "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -45372,14 +45412,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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -45387,24 +45427,14 @@ "title": "Audit Report(s)" }, { - "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": 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": 9, @@ -45412,57 +45442,32 @@ "title": "Clinical Decision Support" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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" } ], "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://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -45476,9 +45481,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://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45519,30 +45524,30 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -45550,19 +45555,14 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -45570,49 +45570,24 @@ "title": "Implantable Device List" }, { - "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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" }, { "id": 54, @@ -45620,14 +45595,19 @@ "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": 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": 53, @@ -45635,14 +45615,19 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 167, @@ -45650,9 +45635,19 @@ "title": "Electronic Prescribing" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 1, @@ -45660,19 +45655,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 32, @@ -45680,25 +45675,35 @@ "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://code.cerner.com/apiaccess" }, @@ -45748,24 +45753,24 @@ }, "criteriaMet": [ { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -45773,19 +45778,14 @@ "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": 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": 177, @@ -45793,49 +45793,54 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -45849,17 +45854,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://www.mphrx.com/api-guide_mphrx/" }, { "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.mphrx.com/api-guide_mphrx/" } @@ -45901,29 +45906,19 @@ }, "criteriaMet": [ { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -45931,14 +45926,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": 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, @@ -45946,9 +45941,19 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, @@ -45956,44 +45961,54 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -46001,34 +46016,34 @@ "title": "Electronic Prescribing" }, { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, @@ -46036,9 +46051,14 @@ "title": "Patient Health Information Capture" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -46046,72 +46066,65 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://openapi.modulemd.com" + }, { "criterion": { "id": 181, @@ -46127,14 +46140,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.modulemd.com" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://openapi.modulemd.com" } ], "acb": "Drummond Group" @@ -46174,44 +46179,49 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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" }, { "id": 171, @@ -46219,19 +46229,9 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 180, @@ -46239,14 +46239,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 165, @@ -46264,42 +46259,52 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 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" + "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" }, @@ -46313,9 +46318,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://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } @@ -46351,45 +46356,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 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": 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": 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": 35, @@ -46397,19 +46392,9 @@ "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": 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": 3, @@ -46417,29 +46402,49 @@ "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "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": 33, - "number": "170.315 (d)(5)", - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -46447,29 +46452,29 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -46483,17 +46488,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://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" + "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" } @@ -46535,39 +46540,34 @@ }, "criteriaMet": [ { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "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": 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": 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": 176, @@ -46575,24 +46575,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -46600,42 +46600,47 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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://www.navigatingcancer.com/requirements-incentives/" }, @@ -46649,9 +46654,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.navigatingcancer.com/requirements-incentives/" } @@ -46693,44 +46698,59 @@ }, "criteriaMet": [ { - "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": 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": 181, - "number": "170.315 (g)(9)", - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -46738,14 +46758,39 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, @@ -46753,19 +46798,19 @@ "title": "Direct Project" }, { - "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": 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": 172, @@ -46773,14 +46818,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -46788,110 +46833,62 @@ "title": "Quality Management System" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "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, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" - }, - { - "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": 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": [ - { - "criterion": { - "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": 181, @@ -46907,6 +46904,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" + }, + { + "criterion": { + "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/" } ], "acb": "Drummond Group" @@ -46941,124 +46946,114 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "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, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 41, "number": "170.315 (e)(2)", "title": "Secure Messaging" }, + { + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -47066,54 +47061,54 @@ "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" }, { - "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": 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": 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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 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": 8, @@ -47121,19 +47116,19 @@ "title": "Medication Allergy List" }, { - "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": 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": 11, @@ -47141,39 +47136,49 @@ "title": "Smoking Status" }, { - "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://nethealthapis-integration.nhsinc.com/index.html" }, { "criterion": { @@ -47185,11 +47190,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://nethealthapis-integration.nhsinc.com/index.html" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -47229,29 +47234,24 @@ }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -47259,44 +47259,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 12, @@ -47304,44 +47279,44 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 175, @@ -47349,19 +47324,19 @@ "title": "Auditing Actions on Health Information" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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, @@ -47369,29 +47344,34 @@ "title": "Amendments" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 51, @@ -47399,85 +47379,110 @@ "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 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": 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.nextgen.com/api" }, { "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.nextgen.com/api" }, @@ -47522,9 +47527,14 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -47532,24 +47542,24 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 28, @@ -47557,44 +47567,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -47602,34 +47617,29 @@ "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 9, @@ -47637,127 +47647,130 @@ "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": 36, - "number": "170.315 (d)(8)", - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "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": 175, "number": "170.315 (d)(10)", "title": "Auditing Actions on Health Information" }, - { - "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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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://www.nextgen.com/api" + }, { "criterion": { "id": 56, @@ -47773,14 +47786,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.nextgen.com/api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" @@ -47815,14 +47820,44 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 53, @@ -47830,44 +47865,44 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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, @@ -47875,39 +47910,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -47915,29 +47950,24 @@ "title": "Integrity" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -47945,89 +47975,64 @@ "title": "Automatic Access Time-out" }, { - "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" + "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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "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": 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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 5, @@ -48035,19 +48040,19 @@ "title": "Demographics" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -48113,49 +48118,54 @@ }, "criteriaMet": [ { - "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 51, @@ -48163,94 +48173,94 @@ "title": "Automated Measure Calculation" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -48258,59 +48268,54 @@ "title": "Electronic Health Information 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": 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": 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": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "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": 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" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -48376,14 +48381,19 @@ }, "criteriaMet": [ { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -48391,69 +48401,69 @@ "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -48461,34 +48471,24 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 39, @@ -48496,70 +48496,75 @@ "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "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": 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" + }, + { + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nextech.com/developers-portal" }, { "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.nextech.com/developers-portal" }, @@ -48604,94 +48609,84 @@ }, "criteriaMet": [ { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 59, @@ -48699,39 +48694,44 @@ "title": "Direct Project" }, { - "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": 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": 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": 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": 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": 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": 172, @@ -48739,39 +48739,29 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 29, - "number": "170.315 (d)(1)", - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 176, @@ -48779,14 +48769,29 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -48800,17 +48805,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.nextech.com/developers-portal" }, { "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" } @@ -48852,69 +48857,74 @@ }, "criteriaMet": [ { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -48922,44 +48932,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -48967,92 +48982,82 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "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.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, @@ -49066,9 +49071,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.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } @@ -49110,14 +49115,9 @@ }, "criteriaMet": [ { - "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": 36, @@ -49125,59 +49125,64 @@ "title": "Integrity" }, { - "id": 51, - "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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -49185,24 +49190,29 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 33, @@ -49210,39 +49220,39 @@ "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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -49255,29 +49265,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -49285,30 +49285,27 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 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": "http://www.novomedici.com/meaningful-use/" - }, { "criterion": { "id": 182, @@ -49324,12 +49321,20 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.novomedici.com/meaningful-use/" - } - ], - "acb": "SLI Compliance" - } - ] - }, + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.novomedici.com/meaningful-use/" + } + ], + "acb": "SLI Compliance" + } + ] + }, { "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", "softwareProducts": [ @@ -49363,44 +49368,39 @@ }, "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -49408,39 +49408,64 @@ "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" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "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": 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": 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": 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": 37, @@ -49448,24 +49473,14 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -49473,29 +49488,34 @@ "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 35, @@ -49503,24 +49523,9 @@ "title": "End-User Device Encryption" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 178, @@ -49528,45 +49533,45 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "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://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49611,49 +49616,54 @@ }, "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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, @@ -49661,64 +49671,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 4, @@ -49726,90 +49731,82 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" - }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" - }, { "criterion": { "id": 56, @@ -49825,6 +49822,14 @@ "title": "Standardized API for Patient and Population Services" }, "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" @@ -49864,19 +49869,14 @@ }, "criteriaMet": [ { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -49884,114 +49884,124 @@ "title": "CPOE - Laboratory" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -49999,14 +50009,9 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -50056,24 +50061,9 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -50081,39 +50071,39 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -50121,19 +50111,34 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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": 33, @@ -50141,24 +50146,24 @@ "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -50166,9 +50171,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 3, @@ -50176,19 +50186,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 179, @@ -50196,49 +50206,44 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -50304,19 +50309,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 54, @@ -50324,19 +50329,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 51, @@ -50344,9 +50354,14 @@ "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -50354,39 +50369,49 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 26, @@ -50399,19 +50424,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 43, @@ -50419,14 +50444,14 @@ "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": 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, @@ -50434,110 +50459,82 @@ "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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.omnimd.com/open-api/" - }, { "criterion": { "id": 182, @@ -50546,6 +50543,14 @@ }, "value": "https://fhirregistration.omnimd.com/#/specification" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.omnimd.com/open-api/" + }, { "criterion": { "id": 56, @@ -50587,34 +50592,29 @@ }, "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 173, @@ -50622,64 +50622,74 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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, + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 46, @@ -50687,74 +50697,69 @@ "title": "Transmission to Cancer Registries" }, { - "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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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" + "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": 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": 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": 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": 59, @@ -50762,19 +50767,19 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -50782,37 +50787,45 @@ "title": "Electronic Prescribing" }, { - "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" + }, { "criterion": { "id": 56, @@ -50828,14 +50841,6 @@ "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" @@ -50874,25 +50879,45 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -50900,19 +50925,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -50920,69 +50935,84 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, "number": "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -50990,34 +51020,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 173, @@ -51025,55 +51050,27 @@ "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, - "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" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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://flatiron.force.com/FHIR/s/" - }, { "criterion": { "id": 181, @@ -51089,6 +51086,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://flatiron.force.com/FHIR/s/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://flatiron.force.com/FHIR/s/" } ], "acb": "Drummond Group" @@ -51127,25 +51132,15 @@ "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": 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": 165, @@ -51153,24 +51148,44 @@ "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -51178,24 +51193,29 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -51203,44 +51223,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -51248,22 +51258,17 @@ "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": 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.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, @@ -51277,9 +51282,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.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" } @@ -51321,9 +51326,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -51331,14 +51336,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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, @@ -51346,14 +51356,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -51361,29 +51371,19 @@ "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 29, @@ -51391,9 +51391,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 173, @@ -51401,39 +51401,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, @@ -51441,39 +51446,34 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "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": 179, @@ -51481,29 +51481,29 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 42, @@ -51511,22 +51511,27 @@ "title": "Patient Health Information Capture" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, @@ -51540,9 +51545,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.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51583,176 +51588,168 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 56, - "number": "170.315 (g)(7)", - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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" }, - { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" - }, { "criterion": { "id": 182, @@ -51768,6 +51765,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + }, + { + "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" } ], "acb": "SLI Compliance" @@ -51807,49 +51812,54 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -51857,24 +51867,14 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -51882,14 +51882,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -51897,54 +51892,59 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 172, @@ -51952,65 +51952,70 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 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" } ], "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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, { "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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, @@ -52060,64 +52065,64 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 29, @@ -52125,14 +52130,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 2, @@ -52145,29 +52155,29 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 43, @@ -52175,64 +52185,69 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 173, @@ -52240,19 +52255,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, @@ -52323,14 +52328,19 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 171, @@ -52338,44 +52348,44 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 39, @@ -52383,64 +52393,59 @@ "title": "Accounting of Disclosures" }, { - "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, + "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": 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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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, @@ -52448,14 +52453,19 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, @@ -52463,29 +52473,14 @@ "title": "Application Access - All Data Request" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 34, @@ -52493,9 +52488,9 @@ "title": "Emergency Access" }, { - "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": 36, @@ -52503,55 +52498,65 @@ "title": "Integrity" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.pcesystems.com/g10APIInfo.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.pcesystems.com/g10APIInfo.html" }, @@ -52600,110 +52605,80 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -52711,24 +52686,34 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -52736,54 +52721,69 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -52791,17 +52791,22 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.pcisgold.com" }, @@ -52815,9 +52820,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://fhir.pcisgold.com" } @@ -52859,24 +52864,24 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -52884,25 +52889,30 @@ "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 28, "number": "170.315 (c)(4)", @@ -52914,34 +52924,24 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -52949,34 +52949,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -52984,19 +52979,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -53004,29 +53004,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, @@ -53034,50 +53039,50 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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" } ], "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.mdsuite.com/api/help/index" }, { "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.mdsuite.com/api/help/index" }, @@ -53127,65 +53132,65 @@ }, "criteriaMet": [ { - "id": 56, - "number": "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": 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" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "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": 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": 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" + "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" } @@ -53222,29 +53227,19 @@ }, "criteriaMet": [ { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -53252,24 +53247,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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" } ], "apiDocumentation": [ @@ -53327,19 +53332,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" }, { "id": 33, @@ -53347,14 +53352,9 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -53362,39 +53362,39 @@ "title": "Trusted Connection" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -53402,14 +53402,9 @@ "title": "Transitions of Care" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 174, @@ -53417,60 +53412,70 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "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.thesnfist.com/cures-update" }, { "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.thesnfist.com/cures-update" }, @@ -53520,54 +53525,54 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 52, @@ -53575,14 +53580,24 @@ "title": "Safety-Enhanced Design" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -53590,9 +53605,9 @@ "title": "Multi-Factor Authentication" }, { - "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": 32, @@ -53600,9 +53615,14 @@ "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 51, @@ -53610,29 +53630,19 @@ "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 43, @@ -53640,90 +53650,85 @@ "title": "Transmission to Immunization Registries" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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.allscripts.com/Fhir/Introduction" }, { "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" }, @@ -53768,24 +53773,29 @@ }, "criteriaMet": [ { - "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": 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" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 43, @@ -53793,24 +53803,9 @@ "title": "Transmission to Immunization Registries" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -53818,99 +53813,79 @@ "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "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": 37, + "number": "170.315 (d)(9)", + "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": 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, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "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" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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, @@ -53918,14 +53893,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 52, @@ -53933,9 +53928,14 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -53943,35 +53943,40 @@ "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "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/Fhir/Introduction" }, { "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" }, @@ -54016,24 +54021,9 @@ }, "criteriaMet": [ { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -54041,14 +54031,14 @@ "title": "Transmission to Immunization Registries" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 21, @@ -54056,39 +54046,44 @@ "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -54096,54 +54091,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 44, @@ -54151,14 +54136,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 37, @@ -54166,19 +54151,9 @@ "title": "Trusted Connection" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -54186,24 +54161,54 @@ "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": 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, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -54217,17 +54222,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://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" } @@ -54264,64 +54269,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 56, - "number": "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 178, @@ -54329,14 +54294,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 44, @@ -54344,9 +54304,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 1, @@ -54354,24 +54319,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization 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": 173, @@ -54379,14 +54349,14 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, @@ -54394,19 +54364,19 @@ "title": "Electronic Prescribing" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -54414,24 +54384,34 @@ "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 176, @@ -54439,32 +54419,57 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "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" }, @@ -54478,9 +54483,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" } @@ -54517,54 +54522,59 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, @@ -54572,64 +54582,59 @@ "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 39, @@ -54637,49 +54642,44 @@ "title": "Accounting of Disclosures" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 4, @@ -54687,29 +54687,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -54770,29 +54775,24 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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, @@ -54800,24 +54800,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 42, @@ -54825,19 +54820,19 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -54845,14 +54840,29 @@ "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, @@ -54860,24 +54870,19 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, @@ -54885,100 +54890,92 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "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": 56, @@ -54994,6 +54991,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -55028,44 +55033,34 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -55073,44 +55068,44 @@ "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": 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": 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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 9, @@ -55118,19 +55113,19 @@ "title": "Clinical Decision Support" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 49, @@ -55138,122 +55133,140 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, + { + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "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://developer.allscripts.com/" + }, { "criterion": { "id": 56, @@ -55269,14 +55282,6 @@ "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" @@ -55310,65 +55315,85 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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" + "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": 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": 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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 42, @@ -55376,44 +55401,39 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 36, @@ -55421,54 +55441,29 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 48, @@ -55476,49 +55471,44 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 29, @@ -55526,22 +55516,37 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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" + }, + { + "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)" } ], "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/" }, @@ -55555,9 +55560,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://developer.allscripts.com/" } @@ -55594,24 +55599,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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, @@ -55624,54 +55649,49 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -55679,29 +55699,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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, @@ -55709,19 +55729,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "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": 165, @@ -55729,29 +55749,29 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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, @@ -55759,59 +55779,44 @@ "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 181, @@ -55877,54 +55882,54 @@ }, "criteriaMet": [ { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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, - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -55932,44 +55937,49 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 173, @@ -55977,19 +55987,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -55997,74 +56002,69 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 14, @@ -56072,34 +56072,39 @@ "title": "Implantable Device List" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -56160,19 +56165,24 @@ }, "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": 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" + "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": 37, @@ -56180,19 +56190,24 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, @@ -56200,79 +56215,79 @@ "title": "Emergency Access" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 182, @@ -56280,29 +56295,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 44, @@ -56310,9 +56320,9 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, @@ -56320,19 +56330,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 3, @@ -56340,47 +56340,52 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, @@ -56394,9 +56399,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/" } @@ -56433,104 +56438,99 @@ }, "criteriaMet": [ { - "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" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -56538,14 +56538,24 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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, @@ -56553,59 +56563,64 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 15, @@ -56613,50 +56628,32 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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": 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" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, @@ -56672,6 +56669,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" @@ -56705,75 +56710,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 173, @@ -56781,79 +56751,74 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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" + "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, @@ -56861,75 +56826,107 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, + "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": 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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 56, @@ -56945,6 +56942,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" @@ -56979,9 +56984,9 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -56989,39 +56994,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 5, @@ -57029,114 +57034,99 @@ "title": "Demographics" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -57144,9 +57134,14 @@ "title": "Quality Management System" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 174, @@ -57154,44 +57149,54 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -57252,9 +57257,9 @@ }, "criteriaMet": [ { - "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": 34, @@ -57262,29 +57267,19 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 35, @@ -57292,75 +57287,85 @@ "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": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "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, "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" } ], "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/" } @@ -57397,64 +57402,64 @@ }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -57462,29 +57467,29 @@ "title": "Trusted Connection" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -57537,24 +57542,19 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -57562,34 +57562,34 @@ "title": "Automatic Access Time-out" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -57597,19 +57597,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -57617,35 +57622,35 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" + "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/" } @@ -57686,40 +57691,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 1, @@ -57727,29 +57717,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 14, @@ -57757,84 +57742,84 @@ "title": "Implantable Device List" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -57842,34 +57827,39 @@ "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 181, @@ -57877,9 +57867,24 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -57945,54 +57950,39 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 25, @@ -58000,24 +57990,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -58025,39 +58020,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, @@ -58065,14 +58050,19 @@ "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 174, @@ -58080,54 +58070,34 @@ "title": "Audit Report(s)" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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" }, { "id": 172, @@ -58135,19 +58105,54 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -58213,39 +58218,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -58253,34 +58258,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 5, @@ -58288,14 +58283,14 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 56, @@ -58307,25 +58302,40 @@ "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 173, @@ -58333,19 +58343,14 @@ "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": [ @@ -58410,40 +58415,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 180, @@ -58455,48 +58445,71 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.willowgladetechnologies.com/requirements" + }, { "criterion": { "id": 182, @@ -58512,14 +58525,6 @@ "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,9 +58564,14 @@ }, "criteriaMet": [ { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 166, @@ -58569,49 +58579,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -58619,99 +58614,84 @@ "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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" - }, { "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": 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": 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": 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": 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": 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, - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -58719,9 +58699,14 @@ "title": "Safety-Enhanced 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -58729,55 +58714,75 @@ "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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 26, + "number": "170.315 (c)(2)", + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, @@ -58827,74 +58832,69 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 42, @@ -58902,34 +58902,44 @@ "title": "Patient Health Information Capture" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 34, @@ -58937,44 +58947,49 @@ "title": "Emergency Access" }, { - "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": 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": 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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 11, @@ -58982,69 +58997,54 @@ "title": "Smoking Status" }, { - "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": 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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 5, @@ -59052,22 +59052,35 @@ "title": "Demographics" }, { - "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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://mraemr.com:47102/api/help_document.asp" + }, { "criterion": { "id": 181, @@ -59083,14 +59096,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://mraemr.com:47102/api/help_document.asp" } ], "acb": "ICSA Labs" @@ -59130,14 +59135,24 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -59145,109 +59160,134 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "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": 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": 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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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" }, { - "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": 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": 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" + "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 56, @@ -59255,14 +59295,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -59270,49 +59310,19 @@ "title": "Safety-Enhanced 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 167, @@ -59320,17 +59330,20 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 181, @@ -59346,14 +59359,6 @@ "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,9 +59393,14 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 181, @@ -59408,69 +59418,69 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -59478,29 +59488,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 32, @@ -59508,90 +59513,82 @@ "title": "Amendments" }, { - "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, - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 56, @@ -59607,6 +59604,14 @@ "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,19 +59646,24 @@ }, "criteriaMet": [ { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -59666,14 +59676,14 @@ "title": "Data Export" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 172, @@ -59681,54 +59691,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -59736,39 +59726,59 @@ "title": "Demographics" }, { - "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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 12, @@ -59776,64 +59786,59 @@ "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ @@ -59867,11 +59872,11 @@ ] }, { - "listSourceURL": "https://dataapi.practiceehr.com", + "listSourceURL": "https://fhir.pointclickcare.com/", "softwareProducts": [ { - "id": 10923, - "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", + "id": 10246, + "chplProductNumber": "15.04.04.2181.Poin.04.00.1.191231", "edition": { "id": 3, "name": "2015" @@ -59881,72 +59886,87 @@ "name": "" }, "developer": { - "id": 1998, - "name": "Practice EHR LLC" + "id": 1182, + "name": "PointClickCare Technologies Inc." }, "product": { - "id": 2790, - "name": "Practice EHR" + "id": 1948, + "name": "PointClickCare" }, "version": { - "id": 7051, - "name": "V12" + "id": 7982, + "name": "4" }, - "certificationDate": "2022-06-28", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 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": 176, @@ -59954,14 +59974,9 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -59969,14 +59984,9 @@ "title": "Patient Health Information Capture" }, { - "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": 37, @@ -59984,29 +59994,29 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -60014,29 +60024,9 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -60044,14 +60034,19 @@ "title": "Electronic Health Information Export" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -60059,29 +60054,42 @@ "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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://fhir-qa.pcc-labs.com/PointClickCare.html" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" }, { "criterion": { @@ -60089,15 +60097,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" } ], "acb": "Drummond Group" @@ -60105,11 +60105,11 @@ ] }, { - "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", + "listSourceURL": "https://dataapi.practiceehr.com", "softwareProducts": [ { - "id": 9856, - "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", + "id": 10923, + "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", "edition": { "id": 3, "name": "2015" @@ -60119,42 +60119,52 @@ "name": "" }, "developer": { - "id": 191, - "name": "California Medical Systems" + "id": 1998, + "name": "Practice EHR LLC" }, "product": { - "id": 289, - "name": "Practice Expert" + "id": 2790, + "name": "Practice EHR" }, "version": { - "id": 7634, - "name": "2018" + "id": 7051, + "name": "V12" }, - "certificationDate": "2018-12-22", + "certificationDate": "2022-06-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -60162,24 +60172,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -60187,29 +60207,24 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -60217,132 +60232,94 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "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://cal-med.com/onc.html" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://cal-med.com/Calmed_API_Document.pdf" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { @@ -60350,7 +60327,15 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://cal-med.com/onc.html" + "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" @@ -60358,11 +60343,11 @@ ] }, { - "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", + "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", "softwareProducts": [ { - "id": 9833, - "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", + "id": 9856, + "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", "edition": { "id": 3, "name": "2015" @@ -60372,57 +60357,42 @@ "name": "" }, "developer": { - "id": 1925, - "name": "Practice Fusion" + "id": 191, + "name": "California Medical Systems" }, "product": { - "id": 3399, - "name": "Practice Fusion EHR" + "id": 289, + "name": "Practice Expert" }, "version": { - "id": 7611, - "name": "3.7" + "id": 7634, + "name": "2018" }, - "certificationDate": "2018-12-31", + "certificationDate": "2018-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, @@ -60430,49 +60400,29 @@ "title": "Family Health History" }, { - "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -60480,75 +60430,80 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 25, "number": "170.315 (c)(1)", @@ -60560,24 +60515,19 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -60585,44 +60535,34 @@ "title": "Emergency Access" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -60632,23 +60572,23 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.practicefusion.com/fhir/api-specifications/" + "value": "https://cal-med.com/onc.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.practicefusion.com/pds-api/developer-guide/" + "value": "http://cal-med.com/Calmed_API_Document.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.practicefusion.com/pds-api/developer-guide/" + "value": "https://cal-med.com/onc.html" } ], "acb": "Drummond Group" @@ -60656,11 +60596,11 @@ ] }, { - "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", + "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", "softwareProducts": [ { - "id": 9590, - "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", + "id": 9833, + "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -60670,32 +60610,32 @@ "name": "" }, "developer": { - "id": 986, - "name": "MicroFour, Inc." + "id": 1925, + "name": "Practice Fusion" }, "product": { - "id": 1667, - "name": "PracticeStudio" + "id": 3399, + "name": "Practice Fusion EHR" }, "version": { - "id": 7412, - "name": "X20" + "id": 7611, + "name": "3.7" }, - "certificationDate": "2018-08-10", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -60703,44 +60643,74 @@ "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 41, @@ -60748,24 +60718,24 @@ "title": "Secure Messaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 181, @@ -60773,44 +60743,44 @@ "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 14, + "number": "170.315 (a)(14)", + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -60818,14 +60788,9 @@ "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 25, @@ -60833,49 +60798,39 @@ "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 54, @@ -60883,52 +60838,47 @@ "title": "Accessibility-Centered Design" }, { - "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" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" }, { "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://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.practicefusion.com/fhir/api-specifications/" }, { "criterion": { @@ -60936,7 +60886,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" } ], "acb": "Drummond Group" @@ -60944,11 +60894,11 @@ ] }, { - "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", + "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", "softwareProducts": [ { - "id": 10853, - "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", + "id": 9590, + "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", "edition": { "id": 3, "name": "2015" @@ -60958,37 +60908,92 @@ "name": "" }, "developer": { - "id": 1767, - "name": "Infor-Med Medical Information Systems Inc." + "id": 986, + "name": "MicroFour, Inc." }, "product": { - "id": 3403, - "name": "Praxis EMR" + "id": 1667, + "name": "PracticeStudio" }, "version": { - "id": 8081, - "name": "9" + "id": 7412, + "name": "X20" }, - "certificationDate": "2022-03-10", + "certificationDate": "2018-08-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "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, @@ -60996,19 +61001,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 54, @@ -61016,29 +61016,24 @@ "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": 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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 172, @@ -61046,44 +61041,44 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 35, @@ -61091,84 +61086,79 @@ "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 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" } ], "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.praxisemr.com/applicationaccess/api/help/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" }, { "criterion": { @@ -61176,27 +61166,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" }, { "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/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", + "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", "softwareProducts": [ { - "id": 11155, - "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", + "id": 10853, + "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", "edition": { "id": 3, "name": "2015" @@ -61206,47 +61196,42 @@ "name": "" }, "developer": { - "id": 1215, - "name": "Procentive" + "id": 1767, + "name": "Infor-Med Medical Information Systems Inc." }, "product": { - "id": 1987, - "name": "Procentive" + "id": 3403, + "name": "Praxis EMR" }, "version": { - "id": 8723, - "name": "2" + "id": 8081, + "name": "9" }, - "certificationDate": "2022-12-28", + "certificationDate": "2022-03-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -61254,19 +61239,19 @@ "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": 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": 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": 36, @@ -61274,9 +61259,29 @@ "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -61284,9 +61289,24 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -61294,14 +61314,14 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -61309,9 +61329,9 @@ "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": 33, @@ -61319,39 +61339,24 @@ "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -61359,61 +61364,77 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.praxisemr.com/applicationaccess/api/help/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.praxisemr.com/applicationaccess/api/help/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.praxisemr.com/applicationaccess/api/help/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", + "listSourceURL": "https://fhir.procentive.com/", "softwareProducts": [ { - "id": 11391, - "chplProductNumber": "15.04.04.2837.Puls.08.02.1.231206", + "id": 11155, + "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", "edition": { "id": 3, "name": "2015" @@ -61423,42 +61444,37 @@ "name": "" }, "developer": { - "id": 1838, - "name": "Pulse Systems, Inc" + "id": 1215, + "name": "Procentive" }, "product": { - "id": 2910, - "name": "Pulse EHR" + "id": 1987, + "name": "Procentive" }, "version": { - "id": 8901, - "name": "8.01" + "id": 8723, + "name": "2" }, - "certificationDate": "2023-12-06", + "certificationDate": "2022-12-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 165, @@ -61466,24 +61482,24 @@ "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 177, @@ -61491,84 +61507,79 @@ "title": "Multi-Factor Authentication" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" }, { - "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 180, @@ -61576,24 +61587,24 @@ "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": 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": 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": 35, @@ -61601,62 +61612,46 @@ "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, - { - "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" }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" + "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", + "softwareProducts": [ { - "id": 11180, - "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", + "id": 11391, + "chplProductNumber": "15.04.04.2837.Puls.08.02.1.231206", "edition": { "id": 3, "name": "2015" @@ -61674,59 +61669,54 @@ "name": "Pulse EHR" }, "version": { - "id": 8737, - "name": "8.0" + "id": 8901, + "name": "8.01" }, - "certificationDate": "2022-12-29", + "certificationDate": "2023-12-06", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 174, @@ -61734,9 +61724,9 @@ "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -61744,9 +61734,19 @@ "title": "Direct Project" }, { - "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": 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, @@ -61754,39 +61754,64 @@ "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -61794,50 +61819,25 @@ "title": "Electronic Prescribing" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 54, "number": "170.315 (g)(5)", @@ -61849,22 +61849,30 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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://harrisambulatory.com/pulse-api-documentation/" + }, { "criterion": { "id": 56, @@ -61880,26 +61888,13 @@ "title": "Standardized API for Patient and Population Services" }, "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" - } - ] - }, - { - "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11213, - "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", + "id": 11180, + "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", "edition": { "id": 3, "name": "2015" @@ -61909,97 +61904,117 @@ "name": "" }, "developer": { - "id": 2140, - "name": "Pure EHR LLC" + "id": 1838, + "name": "Pulse Systems, Inc" }, "product": { - "id": 3690, - "name": "Pure EHR" + "id": 2910, + "name": "Pulse EHR" }, "version": { - "id": 8755, - "name": "1.0" + "id": 8737, + "name": "8.0" }, - "certificationDate": "2023-01-10", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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, + "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" + "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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, @@ -62007,29 +62022,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -62037,29 +62067,29 @@ "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -62067,19 +62097,19 @@ "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" } ], "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://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { @@ -62087,15 +62117,15 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://harrisambulatory.com/pulse-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://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -62103,11 +62133,11 @@ ] }, { - "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", + "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", "softwareProducts": [ { - "id": 10803, - "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", + "id": 11213, + "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", "edition": { "id": 3, "name": "2015" @@ -62117,83 +62147,28 @@ "name": "" }, "developer": { - "id": 2099, - "name": "Magilen Enterprises Inc" + "id": 2140, + "name": "Pure EHR LLC" }, "product": { - "id": 3604, - "name": "QSmartCare" + "id": 3690, + "name": "Pure EHR" }, "version": { - "id": 8432, + "id": 8755, "name": "1.0" }, - "certificationDate": "2022-01-27", + "certificationDate": "2023-01-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, { "id": 32, "number": "170.315 (d)(4)", @@ -62205,74 +62180,69 @@ "title": "Quality Management System" }, { - "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": 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": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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)", - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 171, @@ -62280,9 +62250,24 @@ "title": "Electronic Health Information Export" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 1, @@ -62290,29 +62275,29 @@ "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -62320,32 +62305,27 @@ "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": 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://www.qsmartcare.com/api-documentation.html" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "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.qsmartcare.com/api-documentation.html" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "criterion": { @@ -62353,19 +62333,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir.myqone.com/Endpoints", + "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", "softwareProducts": [ { - "id": 10709, - "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", + "id": 10803, + "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", "edition": { "id": 3, "name": "2015" @@ -62375,42 +62355,52 @@ "name": "" }, "developer": { - "id": 1615, - "name": "TRIARQ Practice Services" + "id": 2099, + "name": "Magilen Enterprises Inc" }, "product": { - "id": 2816, - "name": "QSuite" + "id": 3604, + "name": "QSmartCare" }, "version": { - "id": 7113, - "name": "Manistee" + "id": 8432, + "name": "1.0" }, - "certificationDate": "2021-11-05", + "certificationDate": "2022-01-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 54, @@ -62418,54 +62408,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 182, @@ -62473,144 +62463,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -62618,37 +62553,37 @@ "title": "Transmission to Immunization Registries" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.myqone.com" + "value": "https://www.qsmartcare.com/api-documentation.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://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { @@ -62656,7 +62591,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://www.qsmartcare.com/api-documentation.html" } ], "acb": "SLI Compliance" @@ -62664,11 +62599,11 @@ ] }, { - "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", + "listSourceURL": "https://fhir.myqone.com/Endpoints", "softwareProducts": [ { - "id": 10903, - "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", + "id": 10709, + "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", "edition": { "id": 3, "name": "2015" @@ -62678,92 +62613,97 @@ "name": "" }, "developer": { - "id": 1929, - "name": "Quest Diagnostics Incorporated" + "id": 1615, + "name": "TRIARQ Practice Services" }, "product": { - "id": 2787, - "name": "Quanum EHR" + "id": 2816, + "name": "QSuite" }, "version": { - "id": 8501, - "name": "2021" + "id": 7113, + "name": "Manistee" }, - "certificationDate": "2022-05-24", + "certificationDate": "2021-11-05", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -62771,84 +62711,134 @@ "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 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" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, @@ -62856,47 +62846,47 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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" } ], "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.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://fhir.myqone.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://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" }, { "criterion": { @@ -62904,19 +62894,19 @@ "number": "170.315 (g)(9)", "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://apiservices.triarqclouds.com/api/APIDocumentation.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", + "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", "softwareProducts": [ { - "id": 10253, - "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", + "id": 10903, + "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", "edition": { "id": 3, "name": "2015" @@ -62926,77 +62916,47 @@ "name": "" }, "developer": { - "id": 1913, - "name": "Radysans, Inc" + "id": 1929, + "name": "Quest Diagnostics Incorporated" }, "product": { - "id": 3415, - "name": "Radysans EHR" + "id": 2787, + "name": "Quanum EHR" }, "version": { - "id": 7987, - "name": "5.0" + "id": 8501, + "name": "2021" }, - "certificationDate": "2019-12-31", + "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": 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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 35, @@ -63009,69 +62969,39 @@ "title": "Audit Report(s)" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "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": 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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 12, @@ -63079,34 +63009,49 @@ "title": "Family Health History" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 29, @@ -63114,39 +63059,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 181, @@ -63154,9 +63099,24 @@ "title": "Application Access - All Data Request" }, { - "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": 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" } ], "apiDocumentation": [ @@ -63166,7 +63126,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" }, { "criterion": { @@ -63174,7 +63134,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" }, { "criterion": { @@ -63182,7 +63142,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" } ], "acb": "Drummond Group" @@ -63190,11 +63150,11 @@ ] }, { - "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", + "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", "softwareProducts": [ { - "id": 11024, - "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", + "id": 10253, + "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", "edition": { "id": 3, "name": "2015" @@ -63204,18 +63164,18 @@ "name": "" }, "developer": { - "id": 1991, - "name": "ReLi Med Solutions, LLC" + "id": 1913, + "name": "Radysans, Inc" }, "product": { - "id": 3422, - "name": "ReLiMed EMR" + "id": 3415, + "name": "Radysans EHR" }, "version": { - "id": 8615, - "name": "Version 7.3" + "id": 7987, + "name": "5.0" }, - "certificationDate": "2022-11-18", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" @@ -63232,34 +63192,34 @@ "title": "Patient Health Information Capture" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 4, @@ -63267,9 +63227,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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, @@ -63277,54 +63247,54 @@ "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": 54, - "number": "170.315 (g)(5)", - "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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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, @@ -63332,14 +63302,19 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 25, @@ -63347,19 +63322,24 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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, @@ -63367,9 +63347,9 @@ "title": "Implantable Device List" }, { - "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": 1, @@ -63377,54 +63357,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { @@ -63432,15 +63412,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "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" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" } ], "acb": "Drummond Group" @@ -63448,11 +63428,11 @@ ] }, { - "listSourceURL": "https://www.ihs.gov/cis/", + "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", "softwareProducts": [ { - "id": 10848, - "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", + "id": 11024, + "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", "edition": { "id": 3, "name": "2015" @@ -63462,42 +63442,52 @@ "name": "" }, "developer": { - "id": 674, - "name": "Indian Health Service" + "id": 1991, + "name": "ReLi Med Solutions, LLC" }, "product": { - "id": 1033, - "name": "Resource and Patient Management System Electronic Health Record" + "id": 3422, + "name": "ReLiMed EMR" }, "version": { - "id": 8380, - "name": "BCERv7.0" + "id": 8615, + "name": "Version 7.3" }, - "certificationDate": "2022-03-02", + "certificationDate": "2022-11-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 59, @@ -63505,44 +63495,39 @@ "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 1, @@ -63550,74 +63535,64 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 177, - "number": "170.315 (d)(13)", - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -63625,9 +63600,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 52, @@ -63635,59 +63610,44 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -63696,13 +63656,21 @@ } ], "apiDocumentation": [ + { + "criterion": { + "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" + }, { "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" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { @@ -63710,27 +63678,19 @@ "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" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.ihs.gov/cis/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", + "listSourceURL": "https://www.ihs.gov/cis/", "softwareProducts": [ { - "id": 9923, - "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", + "id": 10848, + "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", "edition": { "id": 3, "name": "2015" @@ -63740,57 +63700,57 @@ "name": "" }, "developer": { - "id": 592, - "name": "Health Innovation Technologies, Inc." + "id": 674, + "name": "Indian Health Service" }, "product": { - "id": 3423, - "name": "RevolutionEHR" + "id": 1033, + "name": "Resource and Patient Management System Electronic Health Record" }, "version": { - "id": 7694, - "name": "7" + "id": 8380, + "name": "BCERv7.0" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-03-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 178, @@ -63798,9 +63758,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 171, @@ -63808,74 +63783,79 @@ "title": "Electronic Health Information Export" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -63883,19 +63863,29 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 1, @@ -63903,34 +63893,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" } ], "apiDocumentation": [ @@ -63940,35 +63940,35 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.ihs.gov/cis/" }, { "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.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + "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": 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://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "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.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", + "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10770, - "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", + "id": 9923, + "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -63978,72 +63978,52 @@ "name": "" }, "developer": { - "id": 1846, - "name": "Royal Health, Inc." + "id": 592, + "name": "Health Innovation Technologies, Inc." }, "product": { - "id": 3424, - "name": "Royal Solutions" + "id": 3423, + "name": "RevolutionEHR" }, "version": { - "id": 8424, - "name": "5" + "id": 7694, + "name": "7" }, - "certificationDate": "2021-12-29", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -64051,24 +64031,14 @@ "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -64081,107 +64051,142 @@ "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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" } ], "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://revolutionehrdev.dynamicfhir.com/dhit/basepractice/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://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" }, { "criterion": { @@ -64189,7 +64194,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -64197,11 +64202,11 @@ ] }, { - "listSourceURL": "https://dataapi.sequelmed.com", + "listSourceURL": "https://www.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", "softwareProducts": [ { - "id": 11143, - "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", + "id": 10770, + "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", "edition": { "id": 3, "name": "2015" @@ -64211,62 +64216,47 @@ "name": "" }, "developer": { - "id": 1847, - "name": "Sequel Systems, Inc." + "id": 1846, + "name": "Royal Health, Inc." }, "product": { - "id": 2126, - "name": "SequelMed EHR" + "id": 3424, + "name": "Royal Solutions" }, "version": { - "id": 7973, - "name": "V12" + "id": 8424, + "name": "5" }, - "certificationDate": "2022-12-27", + "certificationDate": "2021-12-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 52, @@ -64274,54 +64264,59 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -64329,64 +64324,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 174, - "number": "170.315 (d)(3)", - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -64394,42 +64394,32 @@ "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": 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": 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": 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://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" }, { "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://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" }, { "criterion": { @@ -64437,7 +64427,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -64445,11 +64435,11 @@ ] }, { - "listSourceURL": "https://genensys.com/api/", + "listSourceURL": "https://dataapi.sequelmed.com", "softwareProducts": [ { - "id": 10317, - "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", + "id": 11143, + "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -64459,42 +64449,37 @@ "name": "" }, "developer": { - "id": 524, - "name": "Genensys LLC" + "id": 1847, + "name": "Sequel Systems, Inc." }, "product": { - "id": 805, - "name": "Simplify EMR" + "id": 2126, + "name": "SequelMed EHR" }, "version": { - "id": 8046, - "name": "4.0" + "id": 7973, + "name": "V12" }, - "certificationDate": "2020-02-25", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 14, @@ -64502,59 +64487,49 @@ "title": "Implantable Device List" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -64562,54 +64537,59 @@ "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -64617,29 +64597,24 @@ "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -64647,49 +64622,52 @@ "title": "Emergency Access" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://genensys.com/api/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" }, { "criterion": { @@ -64697,27 +64675,19 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://genensys.com/api/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://genensys.com/api/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "listSourceURL": "https://genensys.com/api/", "softwareProducts": [ { - "id": 10987, - "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", + "id": 10317, + "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", "edition": { "id": 3, "name": "2015" @@ -64727,27 +64697,37 @@ "name": "" }, "developer": { - "id": 1856, - "name": "Streamline Healthcare Solutions" + "id": 524, + "name": "Genensys LLC" }, "product": { - "id": 2222, - "name": "SmartCare" + "id": 805, + "name": "Simplify EMR" }, "version": { - "id": 8580, - "name": "R6" + "id": 8046, + "name": "4.0" }, - "certificationDate": "2022-09-15", + "certificationDate": "2020-02-25", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 4, @@ -64755,34 +64735,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, @@ -64790,54 +64775,44 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 178, @@ -64845,9 +64820,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -64855,44 +64835,24 @@ "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 9, @@ -64900,74 +64860,74 @@ "title": "Clinical Decision Support" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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)" } ], "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://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://genensys.com/api/" }, { "criterion": { @@ -64975,22 +64935,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + "value": "https://genensys.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://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://genensys.com/api/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 9303, - "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", + "id": 10987, + "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -65008,44 +64973,39 @@ "name": "SmartCare" }, "version": { - "id": 7204, - "name": "5.0" + "id": 8580, + "name": "R6" }, - "certificationDate": "2017-12-31", + "certificationDate": "2022-09-15", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ + { + "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, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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, @@ -65053,24 +65013,9 @@ "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 14, @@ -65078,69 +65023,69 @@ "title": "Implantable Device List" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -65148,29 +65093,39 @@ "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 29, @@ -65178,59 +65133,69 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -65260,15 +65225,10 @@ } ], "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", + "id": 9303, + "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", "edition": { "id": 3, "name": "2015" @@ -65278,42 +65238,182 @@ "name": "" }, "developer": { - "id": 2130, - "name": "SmileCDR" + "id": 1856, + "name": "Streamline Healthcare Solutions" }, "product": { - "id": 3660, - "name": "Smile CDR" + "id": 2222, + "name": "SmartCare" }, "version": { - "id": 8637, - "name": "2022.11.PRE-35" + "id": 7204, + "name": "5.0" }, - "certificationDate": "2022-12-07", + "certificationDate": "2017-12-31", "certificationStatus": { "id": 3, "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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": 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": 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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 176, @@ -65321,9 +65421,19 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 37, @@ -65331,14 +65441,34 @@ "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": 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": 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" } ], "apiDocumentation": [ @@ -65348,7 +65478,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" }, { "criterion": { @@ -65356,14 +65486,27 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/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" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", + "softwareProducts": [ { - "id": 11368, - "chplProductNumber": "15.04.04.3129.Smil.03.01.0.231117", + "id": 11051, + "chplProductNumber": "15.04.04.3129.Smil.02.00.0.221207", "edition": { "id": 3, "name": "2015" @@ -65381,19 +65524,19 @@ "name": "Smile CDR" }, "version": { - "id": 8879, - "name": "2023" + "id": 8637, + "name": "2022.11.PRE-35" }, - "certificationDate": "2023-11-17", + "certificationDate": "2022-12-07", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "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": 37, @@ -65401,14 +65544,14 @@ "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": 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": 176, @@ -65416,29 +65559,124 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 29, + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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://cms.smilecdr.com/fhir-request/api-docs" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "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": 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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "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" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -65496,134 +65734,134 @@ }, "criteriaMet": [ { - "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": 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" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 59, @@ -65631,24 +65869,24 @@ "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 48, @@ -65656,55 +65894,55 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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://fhir.cerner.com/soarian/overview/" }, { "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.cerner.com/soarian/overview/" }, @@ -65753,40 +65991,15 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, @@ -65794,9 +66007,9 @@ "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": 36, @@ -65804,54 +66017,54 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 175, @@ -65859,29 +66072,24 @@ "title": "Auditing Actions on Health Information" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 174, @@ -65889,24 +66097,19 @@ "title": "Audit Report(s)" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -65914,39 +66117,64 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 181, @@ -65954,9 +66182,19 @@ "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": 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" } ], "apiDocumentation": [ @@ -65970,17 +66208,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://solidpractice.com/cost-limitation.php" }, { "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://solidpractice.com/cost-limitation.php" } @@ -66021,6 +66259,31 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 173, "number": "170.315 (d)(2)", @@ -66032,54 +66295,44 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "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": 182, @@ -66087,45 +66340,22 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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://api-docs.practicegateway.net" - }, { "criterion": { "id": 56, @@ -66141,6 +66371,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://api-docs.practicegateway.net" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api-docs.practicegateway.net" } ], "acb": "Drummond Group" @@ -66180,19 +66418,14 @@ }, "criteriaMet": [ { - "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": 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": 176, @@ -66200,14 +66433,9 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 8, @@ -66215,94 +66443,89 @@ "title": "Medication Allergy List" }, { - "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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, @@ -66310,34 +66533,34 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -66345,25 +66568,40 @@ "title": "CPOE - Laboratory" }, { - "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": 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" } ], "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.correctek.com/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://www.correctek.com/cost-disclosure-and-transparency/" }, @@ -66413,44 +66651,49 @@ }, "criteriaMet": [ { - "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, - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 36, @@ -66458,24 +66701,19 @@ "title": "Integrity" }, { - "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": 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": 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, @@ -66483,29 +66721,9 @@ "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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 180, @@ -66513,19 +66731,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 29, @@ -66533,9 +66746,19 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, @@ -66543,39 +66766,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -66641,19 +66879,19 @@ }, "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 174, @@ -66661,44 +66899,39 @@ "title": "Audit Report(s)" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -66706,24 +66939,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -66731,9 +66959,9 @@ "title": "Application Access - Patient Selection" }, { - "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": 26, @@ -66741,24 +66969,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 53, @@ -66766,14 +66999,14 @@ "title": "Quality Management System" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -66781,75 +67014,80 @@ "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" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://patientportal.streamlinemd.com/FHIRAPI" }, { "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://patientportal.streamlinemd.com/FHIRAPI" }, @@ -66899,34 +67137,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 9, @@ -66934,14 +67182,19 @@ "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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, @@ -66949,19 +67202,24 @@ "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 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": 174, @@ -66969,74 +67227,49 @@ "title": "Audit Report(s)" }, { - "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": 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": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 44, @@ -67044,29 +67277,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 25, @@ -67074,24 +67297,29 @@ "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -67099,9 +67327,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -67115,17 +67353,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.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://www.systemedx.com/API/APIIntro.html" } @@ -67172,65 +67410,65 @@ "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": 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": 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": 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": 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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 179, "number": "170.315 (f)(5)", @@ -67242,29 +67480,34 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 166, @@ -67272,87 +67515,82 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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" } ], "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://wiki.traknetsolutions.com/traknet-open-api" }, @@ -67366,9 +67604,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": "http://wiki.traknetsolutions.com/traknet-open-api" } @@ -67410,34 +67648,29 @@ }, "criteriaMet": [ { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 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": 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": 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": 177, @@ -67445,14 +67678,9 @@ "title": "Multi-Factor Authentication" }, { - "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": 5, @@ -67460,14 +67688,14 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -67475,120 +67703,122 @@ "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": 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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, { "criterion": { "id": 182, @@ -67604,6 +67834,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67642,40 +67880,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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, @@ -67683,9 +67896,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 14, @@ -67693,34 +67906,34 @@ "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": 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": 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" + "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": 178, @@ -67728,14 +67941,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 4, @@ -67748,19 +67971,19 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 42, @@ -67768,9 +67991,9 @@ "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": 174, @@ -67778,9 +68001,9 @@ "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": 173, @@ -67788,14 +68011,14 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -67803,22 +68026,37 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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" + }, + { + "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.kareo.com/macra-mips" }, @@ -67832,9 +68070,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.kareo.com/macra-mips" } @@ -67875,50 +68113,30 @@ "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": 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)" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -67931,64 +68149,79 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 177, @@ -67996,45 +68229,42 @@ "title": "Multi-Factor Authentication" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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://devportal.techcareehr.com/Terms" - }, { "criterion": { "id": 181, @@ -68050,6 +68280,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://devportal.techcareehr.com/Terms" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://devportal.techcareehr.com/Terms" } ], "acb": "Drummond Group" @@ -68089,24 +68327,24 @@ }, "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 165, @@ -68114,79 +68352,74 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, @@ -68194,9 +68427,14 @@ "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 9, @@ -68204,49 +68442,44 @@ "title": "Clinical Decision Support" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 175, @@ -68254,85 +68487,82 @@ "title": "Auditing Actions on Health Information" }, { - "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": 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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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" - }, - "value": "https://tenzing.docs.apiary.io/#" - }, { "criterion": { "id": 182, @@ -68348,6 +68578,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://tenzing.docs.apiary.io/#" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://tenzing.docs.apiary.io/#" } ], "acb": "SLI Compliance" @@ -68387,44 +68625,34 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -68432,39 +68660,44 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 20, @@ -68472,74 +68705,79 @@ "title": "Common Clinical Data Set Summary Record - Receive" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 7, @@ -68547,14 +68785,9 @@ "title": "Medication List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 59, @@ -68562,9 +68795,14 @@ "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 25, @@ -68572,44 +68810,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 43, @@ -68617,59 +68860,54 @@ "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" }, { "criterion": { @@ -68681,11 +68919,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": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" } ], "acb": "SLI Compliance" @@ -68724,11 +68962,66 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "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": 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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 33, "number": "170.315 (d)(5)", @@ -68740,64 +69033,201 @@ "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" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://usmon.com/USMON-SmartOnFHIR-API.pdf" + } + ], + "acb": "Leidos" + } + ] + }, + { + "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", + "softwareProducts": [ + { + "id": 10824, + "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2085, + "name": "Landmark Health, LLC" + }, + "product": { + "id": 3574, + "name": "Ubiquity" + }, + "version": { + "id": 8445, + "name": "1.2" + }, + "certificationDate": "2022-02-04", + "certificationStatus": { + "id": 1, + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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": 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, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -68807,19 +69237,35 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://usmon.com/USMON-SmartOnFHIR-API.pdf" + "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" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], - "acb": "Leidos" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", + "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", "softwareProducts": [ { - "id": 10824, - "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", + "id": 9333, + "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", "edition": { "id": 3, "name": "2015" @@ -68829,32 +69275,32 @@ "name": "" }, "developer": { - "id": 2085, - "name": "Landmark Health, LLC" + "id": 1479, + "name": "Universal EHR, Inc." }, "product": { - "id": 3574, - "name": "Ubiquity" + "id": 3459, + "name": "Universal EHR" }, "version": { - "id": 8445, - "name": "1.2" + "id": 7231, + "name": "2.0.0" }, - "certificationDate": "2022-02-04", + "certificationDate": "2018-03-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -68862,19 +69308,24 @@ "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, @@ -68882,9 +69333,14 @@ "title": "Electronic Health Information Export" }, { - "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": 174, @@ -68892,29 +69348,79 @@ "title": "Audit Report(s)" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 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": 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, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -68922,24 +69428,19 @@ "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -68947,9 +69448,9 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -68957,49 +69458,44 @@ "title": "CPOE - Laboratory" }, { - "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" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 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://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" }, { "criterion": { @@ -69007,15 +69503,15 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://www.interopengine.com/2017/open-api-documentation.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://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -69023,11 +69519,11 @@ ] }, { - "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", + "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 9333, - "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", + "id": 11069, + "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", "edition": { "id": 3, "name": "2015" @@ -69037,37 +69533,37 @@ "name": "" }, "developer": { - "id": 1479, - "name": "Universal EHR, Inc." + "id": 1515, + "name": "VisionWeb" }, "product": { - "id": 3459, - "name": "Universal EHR" + "id": 2414, + "name": "Uprise" }, "version": { - "id": 7231, - "name": "2.0.0" + "id": 7534, + "name": "3.1" }, - "certificationDate": "2018-03-12", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 166, @@ -69075,104 +69571,94 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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" + "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 3, @@ -69180,14 +69666,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -69195,19 +69676,9 @@ "title": "Electronic Prescribing" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 29, @@ -69220,9 +69691,24 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -69230,24 +69716,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -69257,7 +69748,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -69265,7 +69756,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -69273,7 +69764,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -69281,11 +69772,11 @@ ] }, { - "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", + "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", "softwareProducts": [ { - "id": 11069, - "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", + "id": 9887, + "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", "edition": { "id": 3, "name": "2015" @@ -69295,92 +69786,97 @@ "name": "" }, "developer": { - "id": 1515, - "name": "VisionWeb" + "id": 1876, + "name": "Vohra Wound Physicians Management, LLC" }, "product": { - "id": 2414, - "name": "Uprise" + "id": 3465, + "name": "VHS Medical Documentation \u0026 Coding" }, "version": { - "id": 7534, - "name": "3.1" + "id": 7660, + "name": "3.5" }, - "certificationDate": "2022-12-13", + "certificationDate": "2018-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "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": 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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, @@ -69388,94 +69884,84 @@ "title": "Audit Report(s)" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -69483,34 +69969,39 @@ "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "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": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { @@ -69518,15 +70009,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" } ], "acb": "Drummond Group" @@ -69534,11 +70025,11 @@ ] }, { - "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", + "listSourceURL": "https://fhir.allegiancemd.io/R4/", "softwareProducts": [ { - "id": 9887, - "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", + "id": 10794, + "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", "edition": { "id": 3, "name": "2015" @@ -69548,67 +70039,67 @@ "name": "" }, "developer": { - "id": 1876, - "name": "Vohra Wound Physicians Management, LLC" + "id": 1673, + "name": "AllegianceMD Software, Inc." }, "product": { - "id": 3465, - "name": "VHS Medical Documentation \u0026 Coding" + "id": 3463, + "name": "Veracity" }, "version": { - "id": 7660, - "name": "3.5" + "id": 7899, + "name": "9.1" }, - "certificationDate": "2018-12-21", + "certificationDate": "2022-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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)" }, { - "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": 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": 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": 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" }, { "id": 53, @@ -69616,9 +70107,39 @@ "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": 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": 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": 33, @@ -69626,14 +70147,19 @@ "title": "Automatic Access Time-out" }, { - "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 178, @@ -69641,29 +70167,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 35, @@ -69671,99 +70197,74 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://allegiancemd.com/fhir-api-documentation" }, { "criterion": { @@ -69771,27 +70272,27 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://allegiancemd.com/developer-guide-api-help/" }, { "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://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://allegiancemd.com/developer-guide-api-help/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.allegiancemd.io/R4/", + "listSourceURL": "https://open.platform.veradigm.com/fhirendpoints", "softwareProducts": [ { - "id": 10794, - "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", + "id": 11009, + "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", "edition": { "id": 3, "name": "2015" @@ -69801,72 +70302,42 @@ "name": "" }, "developer": { - "id": 1673, - "name": "AllegianceMD Software, Inc." + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3463, - "name": "Veracity" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7899, - "name": "9.1" + "id": 8603, + "name": "22.2" }, - "certificationDate": "2022-01-17", + "certificationDate": "2022-10-25", "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": 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": 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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 176, @@ -69874,19 +70345,19 @@ "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": 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" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -69894,54 +70365,64 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 167, @@ -69949,84 +70430,134 @@ "title": "Electronic Prescribing" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 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": 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": 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, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://allegiancemd.com/developer-guide-api-help/" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -70034,27 +70565,22 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://allegiancemd.com/fhir-api-documentation" + "value": "https://developer.veradigm.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://allegiancemd.com/developer-guide-api-help/" + "value": "https://developer.veradigm.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://open.platform.veradigm.com/fhirendpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11009, - "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", + "id": 11289, + "chplProductNumber": "15.04.04.2891.Alls.VE.09.0.230531", "edition": { "id": 3, "name": "2015" @@ -70072,39 +70598,44 @@ "name": "Veradigm EHR" }, "version": { - "id": 8603, - "name": "22.2" + "id": 8806, + "name": "23.1" }, - "certificationDate": "2022-10-25", + "certificationDate": "2023-05-31", "certificationStatus": { "id": 3, "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 44, @@ -70112,24 +70643,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -70137,49 +70663,54 @@ "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -70187,29 +70718,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 179, @@ -70217,24 +70748,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 180, @@ -70242,24 +70768,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 37, @@ -70267,65 +70803,55 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" } ], "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.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/" }, @@ -70341,8 +70867,8 @@ "acb": "Drummond Group" }, { - "id": 11289, - "chplProductNumber": "15.04.04.2891.Alls.VE.09.0.230531", + "id": 11379, + "chplProductNumber": "15.04.04.2891.Vera.23.10.0.231128", "edition": { "id": 3, "name": "2015" @@ -70360,64 +70886,39 @@ "name": "Veradigm EHR" }, "version": { - "id": 8806, - "name": "23.1" + "id": 8890, + "name": "23.3" }, - "certificationDate": "2023-05-31", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 3, "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -70425,19 +70926,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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" }, { - "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": 3, @@ -70445,24 +70946,29 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -70470,39 +70976,39 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 34, @@ -70510,59 +71016,79 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 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": 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": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 169, @@ -70570,42 +71096,42 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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://developer.veradigm.com/" }, @@ -70619,9 +71145,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://developer.veradigm.com/" } @@ -70629,8 +71155,8 @@ "acb": "Drummond Group" }, { - "id": 11379, - "chplProductNumber": "15.04.04.2891.Vera.23.10.0.231128", + "id": 11380, + "chplProductNumber": "15.04.04.2891.Vera.23.11.0.231128", "edition": { "id": 3, "name": "2015" @@ -70648,34 +71174,39 @@ "name": "Veradigm EHR" }, "version": { - "id": 8890, - "name": "23.3" + "id": 8891, + "name": "23.4" }, "certificationDate": "2023-11-28", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 3, @@ -70687,20 +71218,20 @@ "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -70708,44 +71239,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 170, @@ -70753,64 +71254,34 @@ "title": "Care Plan" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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" + "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": 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": 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": 1, @@ -70823,24 +71294,24 @@ "title": "Transitions of Care" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device 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": 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": 42, @@ -70852,15 +71323,35 @@ "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": 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": 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": 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, @@ -70868,9 +71359,34 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 174, @@ -70878,14 +71394,24 @@ "title": "Audit Report(s)" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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" } ], "apiDocumentation": [ @@ -70915,10 +71441,15 @@ } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", + "softwareProducts": [ { - "id": 11380, - "chplProductNumber": "15.04.04.2891.Vera.23.11.0.231128", + "id": 10299, + "chplProductNumber": "15.07.04.2503.Vers.09.01.1.200210", "edition": { "id": 3, "name": "2015" @@ -70928,62 +71459,47 @@ "name": "" }, "developer": { - "id": 1892, - "name": "Veradigm" + "id": 1504, + "name": "VersaSuite" }, "product": { - "id": 3652, - "name": "Veradigm EHR" + "id": 2401, + "name": "VersaSuite" }, "version": { - "id": 8891, - "name": "23.4" + "id": 7948, + "name": "9.0" }, - "certificationDate": "2023-11-28", + "certificationDate": "2020-02-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 179, @@ -70991,64 +71507,64 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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, @@ -71056,29 +71572,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 54, @@ -71086,84 +71597,94 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 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": 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": 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, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "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": 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": 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" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -71171,9 +71692,19 @@ "title": "Clinical Decision Support" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -71183,7 +71714,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://developer.veradigm.com/" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" }, { "criterion": { @@ -71191,7 +71722,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.veradigm.com/" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" }, { "criterion": { @@ -71199,7 +71730,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.veradigm.com/" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -71207,11 +71738,11 @@ ] }, { - "listSourceURL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", + "listSourceURL": "https://www.vision-works.com/cert/FHIR", "softwareProducts": [ { - "id": 10299, - "chplProductNumber": "15.07.04.2503.Vers.09.01.1.200210", + "id": 10954, + "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", "edition": { "id": 3, "name": "2015" @@ -71221,87 +71752,37 @@ "name": "" }, "developer": { - "id": 1504, - "name": "VersaSuite" + "id": 1940, + "name": "Vision Works, Inc." }, "product": { - "id": 2401, - "name": "VersaSuite" + "id": 2666, + "name": "Vision Works" }, "version": { - "id": 7948, - "name": "9.0" + "id": 7382, + "name": "10.0" }, - "certificationDate": "2020-02-10", + "certificationDate": "2022-08-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 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": 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": 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": 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": 180, @@ -71309,44 +71790,29 @@ "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 166, @@ -71354,14 +71820,14 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 37, @@ -71369,64 +71835,39 @@ "title": "Trusted Connection" }, { - "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": 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": 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": 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": 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": 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, @@ -71434,39 +71875,59 @@ "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": 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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -71476,7 +71937,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { @@ -71484,7 +71945,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { @@ -71492,7 +71953,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" } ], "acb": "Drummond Group" @@ -71500,11 +71961,11 @@ ] }, { - "listSourceURL": "https://www.vision-works.com/cert/FHIR", + "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10954, - "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", + "id": 9588, + "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", "edition": { "id": 3, "name": "2015" @@ -71514,52 +71975,47 @@ "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": 7410, + "name": "V6.0" }, - "certificationDate": "2022-08-08", + "certificationDate": "2018-05-08", "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": 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": 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" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 174, @@ -71567,19 +72023,19 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 1, @@ -71587,119 +72043,172 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + }, { "criterion": { "id": 56, "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": { @@ -71707,27 +72216,14 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "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" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", - "softwareProducts": [ + }, { - "id": 9588, - "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", + "id": 11388, + "chplProductNumber": "15.99.09.2526.WEBe.06.01.1.231204", "edition": { "id": 3, "name": "2015" @@ -71745,24 +72241,24 @@ "name": "WEBeDoctor Physician Office" }, "version": { - "id": 7410, - "name": "V6.0" + "id": 4393, + "name": "6.0" }, - "certificationDate": "2018-05-08", + "certificationDate": "2023-12-04", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 36, @@ -71770,44 +72266,39 @@ "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 9, @@ -71815,24 +72306,19 @@ "title": "Clinical Decision Support" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 52, @@ -71840,34 +72326,24 @@ "title": "Safety-Enhanced Design" }, { - "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" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 14, @@ -71875,14 +72351,14 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -71890,34 +72366,49 @@ "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -71925,42 +72416,42 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -71974,18 +72465,23 @@ }, { "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" } ], - "acb": "Drummond Group" - }, + "acb": "Leidos" + } + ] + }, + { + "listSourceURL": "https://api.fhir.wrs.cloud/docs", + "softwareProducts": [ { - "id": 11388, - "chplProductNumber": "15.99.09.2526.WEBe.06.01.1.231204", + "id": 10750, + "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", "edition": { "id": 3, "name": "2015" @@ -71995,57 +72491,72 @@ "name": "" }, "developer": { - "id": 1527, - "name": "WEBeDoctor, Inc." + "id": 1528, + "name": "WRS Health" }, "product": { - "id": 2433, - "name": "WEBeDoctor Physician Office" + "id": 2434, + "name": "WRS Health Web EHR and Practice Management System" }, "version": { - "id": 4393, - "name": "6.0" + "id": 7587, + "name": "7.0" }, - "certificationDate": "2023-12-04", + "certificationDate": "2021-12-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 166, @@ -72053,29 +72564,34 @@ "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": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -72083,84 +72599,89 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 178, @@ -72168,62 +72689,72 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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" }, { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "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": 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://api.fhir.wrs.cloud/docs" }, { "criterion": { @@ -72231,19 +72762,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://api.wrshealth.com/api/docs/mu/index.html" } ], - "acb": "Leidos" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://api.fhir.wrs.cloud/docs", + "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", "softwareProducts": [ { - "id": 10750, - "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", + "id": 11022, + "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", "edition": { "id": 3, "name": "2015" @@ -72253,102 +72784,47 @@ "name": "" }, "developer": { - "id": 1528, - "name": "WRS Health" + "id": 933, + "name": "Medical Informatics Engineering" }, "product": { - "id": 2434, - "name": "WRS Health Web EHR and Practice Management System" + "id": 1480, + "name": "WebChart EHR" }, "version": { - "id": 7587, - "name": "7.0" + "id": 8613, + "name": "8.4" }, - "certificationDate": "2021-12-14", + "certificationDate": "2022-11-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 165, @@ -72356,79 +72832,74 @@ "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 4, @@ -72436,9 +72907,14 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -72446,49 +72922,54 @@ "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 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": 177, @@ -72496,9 +72977,54 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -72508,7 +73034,7 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { @@ -72516,7 +73042,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { @@ -72524,19 +73050,19 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.fhir.wrs.cloud/docs" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", + "listSourceURL": "https://fhir.qa.welligent.com/", "softwareProducts": [ { - "id": 11022, - "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", + "id": 10811, + "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", "edition": { "id": 3, "name": "2015" @@ -72546,62 +73072,62 @@ "name": "" }, "developer": { - "id": 933, - "name": "Medical Informatics Engineering" + "id": 1537, + "name": "Welligent, Part of the ContinuumCloud" }, "product": { - "id": 1480, - "name": "WebChart EHR" + "id": 2445, + "name": "Welligent" }, "version": { - "id": 8613, - "name": "8.4" + "id": 8034, + "name": "8MU3" }, - "certificationDate": "2022-11-17", + "certificationDate": "2022-02-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -72609,34 +73135,9 @@ "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 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": 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, @@ -72644,39 +73145,9 @@ "title": "Transitions of Care" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "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, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -72684,9 +73155,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 182, @@ -72694,29 +73170,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -72724,87 +73200,47 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 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": 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/" + "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": 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/" + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, { "criterion": { @@ -72812,19 +73248,19 @@ "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://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.qa.welligent.com/", + "listSourceURL": "https://zoobooksystems.com/api-documentation/", "softwareProducts": [ { - "id": 10811, - "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", + "id": 9268, + "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", "edition": { "id": 3, "name": "2015" @@ -72834,32 +73270,42 @@ "name": "" }, "developer": { - "id": 1537, - "name": "Welligent, Part of the ContinuumCloud" + "id": 2009, + "name": "Zoobook Systems LLC" }, "product": { - "id": 2445, - "name": "Welligent" + "id": 2841, + "name": "Zoobook EHR" }, "version": { - "id": 8034, - "name": "8MU3" + "id": 7175, + "name": "2.0" }, - "certificationDate": "2022-02-01", + "certificationDate": "2017-12-31", "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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, @@ -72867,9 +73313,14 @@ "title": "Automatic Access Time-out" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 174, @@ -72877,74 +73328,79 @@ "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": 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": 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": 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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, @@ -72952,14 +73408,14 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 9, @@ -72967,42 +73423,42 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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" } ], "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" + "value": "https://zoobooksystems.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.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://zoobooksystems.com/disclosures/" }, { "criterion": { @@ -73010,19 +73466,19 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://zoobooksystems.com/api-documentation/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://zoobooksystems.com/api-documentation/", + "listSourceURL": "https://www.zoommd.com/zoommd-file-api-endpoints", "softwareProducts": [ { - "id": 9268, - "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", + "id": 11182, + "chplProductNumber": "15.04.04.1979.Zoom.41.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -73032,67 +73488,82 @@ "name": "" }, "developer": { - "id": 2009, - "name": "Zoobook Systems LLC" + "id": 980, + "name": "Metasolutions Inc" }, "product": { - "id": 2841, - "name": "Zoobook EHR" + "id": 1661, + "name": "ZoomMD" }, "version": { - "id": 7175, - "name": "2.0" + "id": 7081, + "name": "4.1" }, - "certificationDate": "2017-12-31", + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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" + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -73100,19 +73571,24 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -73120,9 +73596,29 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 56, @@ -73130,19 +73626,29 @@ "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": 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -73150,19 +73656,24 @@ "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": 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, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -73170,24 +73681,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, @@ -73195,24 +73696,32 @@ "title": "Transitions of Care" }, { - "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": 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://www.zoommd.com/zoommd-api" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://www.zoommd.com/zoommd-file-api-documentation" }, { "criterion": { @@ -73220,15 +73729,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://zoobooksystems.com/disclosures/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://www.zoommd.com/zoommd-api" } ], "acb": "Drummond Group" @@ -73268,14 +73769,19 @@ }, "criteriaMet": [ { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -73283,24 +73789,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 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": 181, @@ -73308,49 +73814,54 @@ "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 36, @@ -73358,139 +73869,129 @@ "title": "Integrity" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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" }, { - "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": 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": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -73551,84 +74052,74 @@ }, "criteriaMet": [ { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 170, @@ -73636,44 +74127,39 @@ "title": "Care Plan" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, @@ -73681,19 +74167,14 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 49, @@ -73701,9 +74182,34 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 182, @@ -73711,64 +74217,59 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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, @@ -73777,6 +74278,14 @@ } ], "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": 182, @@ -73792,14 +74301,6 @@ "title": "Application Access - Patient Selection" }, "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" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -73834,59 +74335,49 @@ }, "criteriaMet": [ { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -73894,74 +74385,54 @@ "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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" }, { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 1, @@ -73969,14 +74440,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 42, @@ -73984,67 +74460,92 @@ "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -74058,9 +74559,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://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -74097,109 +74598,109 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 178, @@ -74207,64 +74708,64 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 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": 35, @@ -74272,37 +74773,45 @@ "title": "End-User Device Encryption" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 56, @@ -74318,14 +74827,6 @@ "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,39 +74866,44 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, @@ -74405,89 +74911,69 @@ "title": "Family Health History" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 173, @@ -74495,19 +74981,19 @@ "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 35, @@ -74515,39 +75001,49 @@ "title": "End-User Device Encryption" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 14, @@ -74555,40 +75051,45 @@ "title": "Implantable Device List" }, { - "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" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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://mydata.athenahealth.com/home" }, { "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" }, @@ -74633,64 +75134,64 @@ }, "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -74698,39 +75199,44 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 37, @@ -74738,69 +75244,69 @@ "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 39, @@ -74808,44 +75314,39 @@ "title": "Accounting of Disclosures" }, { - "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": 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": 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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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" } ], "apiDocumentation": [ @@ -74859,17 +75360,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://mydata.athenahealth.com/home" }, { "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" } @@ -74905,45 +75406,65 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 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": 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": 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": 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": 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, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -74951,9 +75472,9 @@ "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": 33, @@ -74961,64 +75482,54 @@ "title": "Automatic Access Time-out" }, { - "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, - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -75026,79 +75537,74 @@ "title": "Family Health History" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -75106,19 +75612,14 @@ "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -75179,144 +75680,144 @@ }, "criteriaMet": [ { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 56, - "number": "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -75324,9 +75825,14 @@ "title": "Electronic Prescribing" }, { - "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -75334,67 +75840,70 @@ "title": "Audit Report(s)" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75410,14 +75919,6 @@ "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -75457,9 +75958,9 @@ }, "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": 167, @@ -75467,9 +75968,14 @@ "title": "Electronic Prescribing" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 4, @@ -75477,134 +75983,134 @@ "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -75612,60 +76118,47 @@ "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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, + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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://drchrono-fhirpresentation.everhealthsoftware.com/drchrono/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -75681,6 +76174,14 @@ "title": "Application Access - All Data Request" }, "value": "https://drchrono.com/api-docs/v4/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://drchrono-fhirpresentation.everhealthsoftware.com/drchrono/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -75720,39 +76221,34 @@ }, "criteriaMet": [ { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 56, - "number": "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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, @@ -75760,24 +76256,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 7, @@ -75785,14 +76291,14 @@ "title": "Medication List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem 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": 32, @@ -75800,24 +76306,29 @@ "title": "Amendments" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -75825,49 +76336,44 @@ "title": "Demographics" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 10, @@ -75875,19 +76381,14 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 177, @@ -75895,60 +76396,52 @@ "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 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" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 182, @@ -75957,6 +76450,14 @@ }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 56, @@ -76003,19 +76504,24 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -76023,24 +76529,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -76048,54 +76549,64 @@ "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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" }, { - "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": 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": 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": 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" }, { "id": 53, @@ -76103,29 +76614,44 @@ "title": "Quality Management System" }, { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 59, @@ -76133,24 +76659,19 @@ "title": "Direct Project" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -76158,9 +76679,9 @@ "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": 14, @@ -76168,75 +76689,47 @@ "title": "Implantable Device List" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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://ipatientcare.com/onc-acb-certified-2015-edition/" - }, { "criterion": { "id": 56, @@ -76252,6 +76745,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -76291,34 +76792,44 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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, + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 52, @@ -76326,19 +76837,24 @@ "title": "Safety-Enhanced Design" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 49, @@ -76346,109 +76862,74 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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, "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -76456,9 +76937,29 @@ "title": "Family Health History" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -76466,55 +76967,47 @@ "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": 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" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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://fhir.eclinicalworks.com" - }, { "criterion": { "id": 182, @@ -76530,6 +77023,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhir.eclinicalworks.com" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" @@ -76564,24 +77065,14 @@ }, "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, @@ -76589,39 +77080,44 @@ "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": 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" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 53, @@ -76629,14 +77125,34 @@ "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 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, @@ -76644,54 +77160,64 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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)" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 56, @@ -76699,14 +77225,24 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -76719,64 +77255,29 @@ "title": "Transmission to Immunization Registries" }, { - "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" }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -76837,49 +77338,49 @@ }, "criteriaMet": [ { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -76887,49 +77388,39 @@ "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 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": 43, @@ -76937,29 +77428,29 @@ "title": "Transmission to Immunization Registries" }, { - "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" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 166, @@ -76967,54 +77458,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -77022,34 +77513,44 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -77120,9 +77621,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 25, @@ -77130,9 +77631,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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, @@ -77140,89 +77656,79 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -77230,9 +77736,9 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -77240,27 +77746,30 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" + }, { "criterion": { "id": 182, @@ -77276,14 +77785,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.edermehr.com/ederm-onc-certified" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77323,19 +77824,14 @@ }, "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -77343,19 +77839,24 @@ "title": "Patient Health Information Capture" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 1, @@ -77363,29 +77864,44 @@ "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" }, { - "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 180, @@ -77398,29 +77914,29 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -77428,20 +77944,35 @@ "title": "Integrity" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 181, "number": "170.315 (g)(9)", @@ -77453,24 +77984,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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, @@ -77478,52 +78009,22 @@ "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": 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": 32, - "number": "170.315 (d)(4)", - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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://mu2014-stage.ehana.com/apidocs" }, @@ -77537,9 +78038,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://mu2014-stage.ehana.com/apidocs" } @@ -77581,44 +78082,49 @@ }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 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": 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": 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": 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": 2, @@ -77626,84 +78132,79 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 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, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 178, @@ -77711,29 +78212,14 @@ "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -77741,9 +78227,14 @@ "title": "Application Access - All Data Request" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 171, @@ -77751,54 +78242,64 @@ "title": "Electronic Health Information Export" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" }, { "criterion": { @@ -77810,11 +78311,11 @@ }, { "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://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" } ], "acb": "SLI Compliance" @@ -77854,109 +78355,104 @@ }, "criteriaMet": [ { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "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": 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": 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": 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": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -77964,24 +78460,24 @@ "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" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -77989,20 +78485,17 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" - }, { "criterion": { "id": 181, @@ -78018,6 +78511,14 @@ "title": "Application Access - Patient Selection" }, "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" + }, + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } ], "acb": "Drummond Group" @@ -78057,39 +78558,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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, @@ -78097,109 +78603,109 @@ "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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" + "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": 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": 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": 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": 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": 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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 3, @@ -78207,14 +78713,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -78222,29 +78733,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 5, @@ -78252,20 +78753,12 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78274,6 +78767,14 @@ }, "value": "http://interopengine.com/2017/open-api-documentation.html" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" + }, { "criterion": { "id": 182, @@ -78315,24 +78816,14 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 167, @@ -78340,14 +78831,14 @@ "title": "Electronic Prescribing" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 15, @@ -78355,49 +78846,49 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, @@ -78405,19 +78896,19 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -78425,24 +78916,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -78455,64 +78951,69 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 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" } ], "apiDocumentation": [ @@ -78526,17 +79027,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://dexter-solutions.com/certification" }, { "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://dexter-solutions.com/certification" } @@ -78578,54 +79079,49 @@ }, "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 176, @@ -78633,39 +79129,44 @@ "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": 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": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -78731,24 +79232,19 @@ }, "criteriaMet": [ { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -78756,14 +79252,29 @@ "title": "Accessibility-Centered 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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -78771,24 +79282,24 @@ "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" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -78796,24 +79307,24 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 53, @@ -78821,24 +79332,19 @@ "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": 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": 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" }, { "id": 32, @@ -78846,29 +79352,19 @@ "title": "Amendments" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -78876,19 +79372,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 170, @@ -78896,24 +79387,29 @@ "title": "Care Plan" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 2, @@ -78921,44 +79417,44 @@ "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 20, @@ -78966,19 +79462,24 @@ "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "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": 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" }, { "criterion": { @@ -78990,11 +79491,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": "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" } ], "acb": "SLI Compliance" @@ -79002,7 +79503,7 @@ ] }, { - "listSourceURL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", + "listSourceURL": "https://fhir.10e11.com/", "softwareProducts": [ { "id": 11200, @@ -79034,19 +79535,34 @@ }, "criteriaMet": [ { - "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 170, @@ -79054,79 +79570,79 @@ "title": "Care Plan" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 179, @@ -79134,24 +79650,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 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" }, { "id": 15, @@ -79159,19 +79670,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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, @@ -79179,64 +79680,69 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -79247,11 +79753,6 @@ "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" } ], "apiDocumentation": [ @@ -79265,17 +79766,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://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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -79317,79 +79818,69 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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, @@ -79397,24 +79888,9 @@ "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": 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": 178, @@ -79427,34 +79903,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 12, @@ -79462,19 +79938,14 @@ "title": "Family Health History" }, { - "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": 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, @@ -79482,9 +79953,19 @@ "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 169, @@ -79492,29 +79973,34 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, @@ -79527,20 +80013,27 @@ "title": "Automated Measure Calculation" }, { - "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": 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": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, { "criterion": { "id": 182, @@ -79556,6 +80049,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.interopengine.com/open-api-documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -79595,34 +80096,44 @@ }, "criteriaMet": [ { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 177, @@ -79630,39 +80141,64 @@ "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 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": 176, @@ -79670,39 +80206,34 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 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": 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": 12, @@ -79710,14 +80241,14 @@ "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -79725,49 +80256,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -79779,14 +80280,6 @@ }, "value": "https://www.lillegroup.com/esh.html" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" - }, { "criterion": { "id": 181, @@ -79794,6 +80287,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" } ], "acb": "SLI Compliance" @@ -79833,34 +80334,34 @@ }, "criteriaMet": [ { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 11, @@ -79868,29 +80369,34 @@ "title": "Smoking Status" }, { - "id": 5, - "number": "170.315 (a)(5)", - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -79898,79 +80404,79 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "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": 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": 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": 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": 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" }, { "id": 12, @@ -79978,19 +80484,29 @@ "title": "Family Health History" }, { - "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": 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": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 25, @@ -79998,14 +80514,9 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -80013,29 +80524,19 @@ "title": "Safety-Enhanced Design" }, { - "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, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 20, @@ -80043,39 +80544,39 @@ "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -80094,17 +80595,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.ethizo.com/pda-api/developer-guide/" }, { "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.ethizo.com/pda-api/developer-guide/" } @@ -80146,14 +80647,9 @@ }, "criteriaMet": [ { - "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 4, @@ -80161,14 +80657,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, @@ -80176,69 +80672,64 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -80246,59 +80737,59 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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" }, { "id": 165, @@ -80306,24 +80797,24 @@ "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": 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": 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": 177, @@ -80331,55 +80822,57 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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://www.ezemrx.com/oauth/fhir.htm" - }, { "criterion": { "id": 181, @@ -80395,6 +80888,14 @@ "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": "https://www.ezemrx.com/oauth/fhir.htm" } ], "acb": "SLI Compliance" @@ -80433,65 +80934,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -80499,9 +80970,9 @@ "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": 174, @@ -80509,29 +80980,29 @@ "title": "Audit Report(s)" }, { - "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": 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" + "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": 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": 59, @@ -80539,14 +81010,29 @@ "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -80559,50 +81045,65 @@ "title": "Transitions of Care" }, { - "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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" } ], "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://penn-clinical.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://penn-clinical.com/api-documentation" }, @@ -80647,14 +81148,14 @@ }, "criteriaMet": [ { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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, @@ -80662,144 +81163,154 @@ "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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 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": 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": 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": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 42, @@ -80807,39 +81318,29 @@ "title": "Patient Health Information Capture" }, { - "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" }, { "criterion": { @@ -80851,11 +81352,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": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" } ], "acb": "ICSA Labs" @@ -80895,19 +81396,24 @@ }, "criteriaMet": [ { - "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" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -80915,104 +81421,99 @@ "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" }, { - "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": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 37, @@ -81020,64 +81521,64 @@ "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ @@ -81142,20 +81643,35 @@ "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 37, @@ -81163,59 +81679,49 @@ "title": "Trusted Connection" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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" + "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" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -81223,29 +81729,24 @@ "title": "Demographics" }, { - "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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -81253,14 +81754,19 @@ "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": 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": 42, @@ -81268,39 +81774,34 @@ "title": "Patient Health Information Capture" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -81361,79 +81862,64 @@ }, "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 174, @@ -81441,19 +81927,19 @@ "title": "Audit Report(s)" }, { - "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" + "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": 35, @@ -81461,9 +81947,14 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -81476,39 +81967,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -81516,9 +82002,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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -81532,17 +82033,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://documenter.getpostman.com/view/5318713/RWgrzdoe" }, { "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://documenter.getpostman.com/view/5318713/RWgrzdoe" } @@ -81584,24 +82085,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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" }, { - "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, @@ -81609,9 +82100,14 @@ "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -81619,69 +82115,74 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -81689,29 +82190,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "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": 25, @@ -81724,19 +82205,29 @@ "title": "Automated Measure Calculation" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, @@ -81744,24 +82235,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 36, @@ -81769,30 +82260,32 @@ "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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" }, { - "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": 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://www.icare.com/developers/" - }, { "criterion": { "id": 181, @@ -81808,6 +82301,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.icare.com/developers/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.icare.com/developers/" } ], "acb": "Drummond Group" @@ -81846,25 +82347,20 @@ "name": "Active" }, "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 43, @@ -81877,54 +82373,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -81932,44 +82418,49 @@ "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -81977,44 +82468,44 @@ "title": "Multi-Factor Authentication" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -82022,9 +82513,9 @@ "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -82032,14 +82523,24 @@ "title": "Implantable Device List" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -82110,39 +82611,39 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 25, @@ -82150,14 +82651,14 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, @@ -82165,24 +82666,29 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 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, @@ -82190,29 +82696,24 @@ "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, @@ -82220,24 +82721,9 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 36, @@ -82245,19 +82731,24 @@ "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 178, @@ -82265,50 +82756,52 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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, - "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": 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://apiaccess.mckesson.com/apiportal-service/#/login" - }, { "criterion": { "id": 181, @@ -82317,6 +82810,14 @@ }, "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" + }, { "criterion": { "id": 182, @@ -82363,14 +82864,24 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -82378,84 +82889,74 @@ "title": "Emergency Access" }, { - "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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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" }, { - "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "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": 167, @@ -82463,9 +82964,9 @@ "title": "Electronic Prescribing" }, { - "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": 54, @@ -82473,29 +82974,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 52, @@ -82503,90 +83004,90 @@ "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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" } ], "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://assurecare.com/onc-acb-certified-2015-edition/" }, { "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://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -82631,19 +83132,24 @@ }, "criteriaMet": [ { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -82651,9 +83157,14 @@ "title": "Electronic Prescribing" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -82661,69 +83172,59 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "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": 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" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 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": 42, @@ -82731,74 +83232,69 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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" + "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" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -82806,32 +83302,45 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "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": 56, @@ -82847,14 +83356,6 @@ "title": "Standardized API for Patient and Population Services" }, "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" @@ -82889,44 +83390,24 @@ }, "criteriaMet": [ { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 44, @@ -82934,24 +83415,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 46, @@ -82959,29 +83435,14 @@ "title": "Transmission to Cancer Registries" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 170, @@ -82989,24 +83450,29 @@ "title": "Care Plan" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 39, @@ -83014,39 +83480,49 @@ "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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, - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 51, @@ -83054,9 +83530,14 @@ "title": "Automated Measure Calculation" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -83064,44 +83545,34 @@ "title": "Emergency Access" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 176, @@ -83114,25 +83585,55 @@ "title": "Secure Messaging" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "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": 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" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -83182,29 +83683,24 @@ }, "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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -83212,59 +83708,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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": 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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 26, @@ -83272,64 +83773,69 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -83337,24 +83843,29 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -83362,19 +83873,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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" }, { "id": 2, @@ -83382,22 +83888,25 @@ "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": 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": 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://careconnect-uat.netsmartcloud.com/" + }, { "criterion": { "id": 56, @@ -83413,14 +83922,6 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83455,59 +83956,54 @@ }, "criteriaMet": [ { - "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": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, { "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": 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": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -83515,74 +84011,54 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 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, @@ -83590,19 +84066,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 36, @@ -83610,40 +84086,70 @@ "title": "Integrity" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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" + }, + { + "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": 33, "number": "170.315 (d)(5)", @@ -83655,30 +84161,25 @@ "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.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://careconnect-uat.netsmartcloud.com/" }, @@ -83728,64 +84229,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 13, @@ -83793,49 +84299,19 @@ "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication 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": 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": 11, @@ -83843,69 +84319,64 @@ "title": "Smoking Status" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "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": 42, @@ -83918,19 +84389,44 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -83938,14 +84434,19 @@ "title": "Integrity" }, { - "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": 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" } ], "apiDocumentation": [ @@ -84011,49 +84512,29 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 172, @@ -84061,9 +84542,9 @@ "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": 169, @@ -84076,54 +84557,54 @@ "title": "Amendments" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 180, @@ -84131,24 +84612,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -84156,85 +84642,92 @@ "title": "Automated Measure Calculation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" - }, { "criterion": { "id": 181, @@ -84250,6 +84743,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/Criterions_Software_Inc_EndpointSources.json b/resources/prod_resources/Criterions_Software_Inc_EndpointSources.json new file mode 100644 index 000000000..ac5c56f4f --- /dev/null +++ b/resources/prod_resources/Criterions_Software_Inc_EndpointSources.json @@ -0,0 +1,70 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.lispinerehab", + "OrganizationName": "Long Island Spine Rehabilitation Medicine -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.simonson", + "OrganizationName": "Peter Simonson M.D. -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.futurepodiatrist", + "OrganizationName": "Future Podiatrist, PC -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.djaliman", + "OrganizationName": "Debra Jaliman M.D. -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.amb", + "OrganizationName": "AMB Medical Services -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.tribecaderm", + "OrganizationName": "Tribeca Park Dermatology -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.zambitohc", + "OrganizationName": "Zambito Heart -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.acc", + "OrganizationName": "Advanced Cardio Care  -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.englard", + "OrganizationName": "Arthur Englard M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.phyanesthesia", + "OrganizationName": "Physicians Anesthesia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/fhir/r4/criterions.southbay", + "OrganizationName": "South Bay Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/DSS_Inc_1_EndpointSources.json b/resources/prod_resources/DSS_Inc_1_EndpointSources.json new file mode 100644 index 000000000..f81265eb4 --- /dev/null +++ b/resources/prod_resources/DSS_Inc_1_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://dssjuno-dev-web.dssinc.com/fhir/dss/01ho/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/DSS_Inc_2_EndpointSources.json b/resources/prod_resources/DSS_Inc_2_EndpointSources.json new file mode 100644 index 000000000..9c454d949 --- /dev/null +++ b/resources/prod_resources/DSS_Inc_2_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://dssjess-dev-web.dssinc.com/fhir/jess/basepractice/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/DSS_Inc_EndpointSources.json b/resources/prod_resources/DSS_Inc_EndpointSources.json index f81265eb4..1585bcb63 100644 --- a/resources/prod_resources/DSS_Inc_EndpointSources.json +++ b/resources/prod_resources/DSS_Inc_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://dssjuno-dev-web.dssinc.com/fhir/dss/01ho/r4", + "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/communityhealthhospitals/01ho/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Drchrono_Inc_EndpointSources.json b/resources/prod_resources/Drchrono_Inc_EndpointSources.json index 9f85fec78..fef6acc37 100644 --- a/resources/prod_resources/Drchrono_Inc_EndpointSources.json +++ b/resources/prod_resources/Drchrono_Inc_EndpointSources.json @@ -1115,6 +1115,24 @@ "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_244692/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_496046/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_495929/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Dynamic_Health_IT_Inc_EndpointSources.json b/resources/prod_resources/Dynamic_Health_IT_Inc_EndpointSources.json new file mode 100644 index 000000000..57f9e0dd7 --- /dev/null +++ b/resources/prod_resources/Dynamic_Health_IT_Inc_EndpointSources.json @@ -0,0 +1,58 @@ +{ + "Endpoints": [ + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhithealth/practicetwo/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/tenant01/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/tenant02/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/tenant03/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/ifiit/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/crossfhirtt1/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/crossfhirtt2/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/practice001/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/dhit/kno2/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 3377a1e50..daafc325f 100644 --- a/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json +++ b/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json @@ -97,13 +97,13 @@ "OrganizationZipCode": "" }, { - "URL": "https://EpicFHIR.aurora.org/FHIR/LiveWell/api/FHIR/DSTU2/", + "URL": "https://EpicFHIR.aurora.org/fhirproxy/LiveWell/api/FHIR/DSTU2/", "OrganizationName": "Aurora Health Care - LiveWell", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://EpicFHIR.aurora.org/FHIR/MYBAYCARE/api/FHIR/DSTU2/", + "URL": "https://EpicFHIR.aurora.org/fhirproxy/MYBAYCARE/api/FHIR/DSTU2/", "OrganizationName": "BayCare Clinic - myBayCare", "NPIID": "", "OrganizationZipCode": "" @@ -955,7 +955,7 @@ "OrganizationZipCode": "" }, { - "URL": "https://webproxy.mynovant.org/fhir-prd/api/FHIR/DSTU2/", + "URL": "https://epicproxy.et0798.epichosted.com/APIProxyPRD/api/FHIR/DSTU2/", "OrganizationName": "Novant Health", "NPIID": "", "OrganizationZipCode": "" @@ -1770,12 +1770,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://meritus-rev-prd.meritushealth.com/FHIRPRD/api/FHIR/DSTU2/", - "OrganizationName": "Meritus", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://epicproxy.et1073.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", "OrganizationName": "Englewood Hospital and Medical Center", @@ -1926,12 +1920,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://rproxy.novohtg.com/OAUTHPRD/api/FHIR/DSTU2/", - "OrganizationName": "NOVO Health", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://ic.valleychildrens.org/fhir/api/FHIR/DSTU2/", "OrganizationName": "Valley Children's Healthcare", @@ -2138,7 +2126,7 @@ }, { "URL": "https://epicproxy.et1034.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", - "OrganizationName": "Enloe Medical Center", + "OrganizationName": "Enloe Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -2790,12 +2778,90 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://epicproxy.et1339.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "Woman's", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et1062.epichosted.com/FHIRProxyPRD/api/FHIR/DSTU2/", + "OrganizationName": "Meritus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicscripts.trihealth.com/fhirproxy/api/FHIR/DSTU2/", + "OrganizationName": "Highland District Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "West Bend Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "Cascade Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "Caldera Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "Dr. Burket's Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "East Cascades Women's Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "Fall Creek Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "Pine Springs Health Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", + "OrganizationName": "Ritual Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et1275.epichosted.com/fhirproxy/api/FHIR/DSTU2/", + "OrganizationName": "Sharp HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://haiku.wacofhc.org/FHIR/api/FHIR/R4/", "OrganizationName": "Waco Family Medicine (Heart of Texas Community Health Center)", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "Ritual Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://FHIR.KP.ORG/service/ptnt_care/EpicEdiFhirRoutingSvc/v2014/esb-envlbl/190/api/FHIR/R4/", "OrganizationName": "Kaiser Permanente – Oregon – SW Washington", @@ -2935,7 +3001,7 @@ "OrganizationZipCode": "" }, { - "URL": "https://EpicFHIR.aurora.org/FHIR/MYBAYCARE/api/FHIR/R4/", + "URL": "https://EpicFHIR.aurora.org/fhirproxy/MYBAYCARE/api/FHIR/R4/", "OrganizationName": "BayCare Clinic - myBayCare", "NPIID": "", "OrganizationZipCode": "" @@ -2982,6 +3048,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://epicscripts.trihealth.com/fhirproxy/api/FHIR/R4/", + "OrganizationName": "Highland District Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.ccf.org/mu/api/FHIR/R4/", "OrganizationName": "Cleveland Clinic", @@ -3925,7 +3997,7 @@ "OrganizationZipCode": "" }, { - "URL": "https://webproxy.mynovant.org/fhir-prd/api/FHIR/R4/", + "URL": "https://epicproxy.et0798.epichosted.com/APIProxyPRD/api/FHIR/R4/", "OrganizationName": "Novant Health", "NPIID": "", "OrganizationZipCode": "" @@ -4904,7 +4976,7 @@ }, { "URL": "https://epicproxy.et1034.epichosted.com/FHIRProxy/api/FHIR/R4/", - "OrganizationName": "Enloe Medical Center", + "OrganizationName": "Enloe Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -5310,6 +5382,48 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "West Bend Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "Cascade Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "Caldera Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "Dr. Burket's Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "East Cascades Women's Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "Fall Creek Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "Pine Springs Health Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://epicproxy.et1221.epichosted.com/FHIRProxy/api/FHIR/R4/", "OrganizationName": "Muscogee - Creek Nation Department of Health", @@ -5442,6 +5556,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://epicproxy.et1275.epichosted.com/fhirproxy/api/FHIR/R4/", + "OrganizationName": "Sharp HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.valleyhealth.org/fhirproxy/api/FHIR/R4/", "OrganizationName": "Valley Health Systems", @@ -5526,6 +5646,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://epicproxy.et1339.epichosted.com/FHIRProxy/api/FHIR/R4/", + "OrganizationName": "Woman's", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://epicproxy.et4001.epichosted.com/FHIRProxy/api/FHIR/R4/", "OrganizationName": "Foothill Family Clinic", diff --git a/resources/prod_resources/First_Insight_Corporation_EndpointSources.json b/resources/prod_resources/First_Insight_Corporation_EndpointSources.json index 7bbe380ec..b2b387791 100644 --- a/resources/prod_resources/First_Insight_Corporation_EndpointSources.json +++ b/resources/prod_resources/First_Insight_Corporation_EndpointSources.json @@ -108,12 +108,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://visionhealthspecialties.ficintegrations.com/API/jXW7ST/R4", - "OrganizationName": "Vision Health Specialties", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://easternsierraoptometryca.ficintegrations.com/API/5k3sUI/R4", "OrganizationName": "Drs Carter and Richman", @@ -2413,7 +2407,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/accuvision/R4", + "URL": "https://fhir.maximeyes.com/api/accuvision/R4", "OrganizationName": "AccuVision Optometry", "NPIID": "", "OrganizationZipCode": "" @@ -2664,12 +2658,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://fhir.maximeyes.com/api/universityeye/R4", - "OrganizationName": "UNIVERSITY EYE ASSOCIATES, O.D., P.A.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "api/nec/R4", "OrganizationName": "Jones Eye Associates, P.A.", @@ -2987,6 +2975,102 @@ "OrganizationName": "Site For Sore Eyes Oakland", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/drluu/R4", + "OrganizationName": "Pediatric Ophthalmology And Adult Strabismus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/familyeyecarecentre/R4", + "OrganizationName": "Family Eye Care Centre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/cfvc/R4", + "OrganizationName": "Child and Family Vision Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/strattoneyes/R4", + "OrganizationName": "Dawn Stratton, O. D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/forsight/R4", + "OrganizationName": "Barker \u0026 Truong O.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/judischvision/R4", + "OrganizationName": "Rock Vision Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/drdawnluvaas/R4", + "OrganizationName": "Dr. Luvaas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/vhs/R4", + "OrganizationName": "Vision Health Specialties", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/murrietaoptometry/R4", + "OrganizationName": "Murrieta Optometry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/condev/R4", + "OrganizationName": "City Eyecare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/mfvc/R4", + "OrganizationName": "Montana Family Vision Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/eyemechanix/R4", + "OrganizationName": "Randall Ricketts OD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/drjonanders/R4", + "OrganizationName": "Dr. Jon Anders", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/hheye/R4", + "OrganizationName": "Hermann \u0026 Henry Eyecare, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/peninsulaeyecare/R4", + "OrganizationName": "Salinas Optometric Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/haqeye/R4", + "OrganizationName": "N.Haq M. D., P. A.", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Get_Real_Health_EndpointSources.json b/resources/prod_resources/Get_Real_Health_EndpointSources.json index 963ea6e24..5e095455f 100644 --- a/resources/prod_resources/Get_Real_Health_EndpointSources.json +++ b/resources/prod_resources/Get_Real_Health_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://unify-fhir.sbx.chbase.com/", + "URL": "https://fhir-usa.sbx.unify.chbase.com/", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Greenway_Health_LLC_EndpointSources.json b/resources/prod_resources/Greenway_Health_LLC_EndpointSources.json new file mode 100644 index 000000000..809f2cf6b --- /dev/null +++ b/resources/prod_resources/Greenway_Health_LLC_EndpointSources.json @@ -0,0 +1,3790 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1110", + "OrganizationName": "Alaska Urology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.198", + "OrganizationName": "Complete Women's Care of Alabama,P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.146", + "OrganizationName": "Southern Head and Neck Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70784", + "OrganizationName": "Cheaha Area Regional Emergency Specialist, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1445", + "OrganizationName": "Anniston Orthopaedic Associates. PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.332764", + "OrganizationName": "Ernest L Hendrix MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73790", + "OrganizationName": "Daily Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70200", + "OrganizationName": "Brookwood Internists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1572", + "OrganizationName": "Southlake Orthopaedics Sports Medicine \u0026 Spine Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.433", + "OrganizationName": "Henderson \u0026 Walton Women's Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71381", + "OrganizationName": "Physician Business Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1540", + "OrganizationName": "Alabama Urology \u0026 Robotic Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1720", + "OrganizationName": "Southern Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.37", + "OrganizationName": "Dothan Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.258", + "OrganizationName": "Retina Associates Of Alabama", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400211", + "OrganizationName": "Dr. Jeff Bush", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61325", + "OrganizationName": "Doctors' Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73326", + "OrganizationName": "Shah Clinic of NE Alabama", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73028", + "OrganizationName": "Iqbal Saeed MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.113", + "OrganizationName": "Advanced Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73288", + "OrganizationName": "Jackson Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60882", + "OrganizationName": "Frank H Rudeseal MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73098", + "OrganizationName": "Springhill Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1157", + "OrganizationName": "Pulmonary Associates of Mobile", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1262", + "OrganizationName": "Premier Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72922", + "OrganizationName": "Primary Care Internists of Montgomery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1390", + "OrganizationName": "Capital City Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.95002", + "OrganizationName": "Don Beach PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73220", + "OrganizationName": "PRIMARY CARE SRVC-BLOUNT LLC\ufffd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1696", + "OrganizationName": "Surgical Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.181001", + "OrganizationName": "East Alabama Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.181011", + "OrganizationName": "East Alabama Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1842", + "OrganizationName": "Internal Medicine Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73310", + "OrganizationName": "James R Carpenter MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71711", + "OrganizationName": "Northeast Alabama Health Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73132", + "OrganizationName": "Huey R Kidd DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.317", + "OrganizationName": "West Alabama Family Practice and Sports Medicine PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400329", + "OrganizationName": "Tuscaloosa Lung Sleep and Critical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73349", + "OrganizationName": "William L. McColgan III, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1426", + "OrganizationName": "Conway OB GYN Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1251", + "OrganizationName": "CONWAY WOMEN'S HEALTH CENTER, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.160002", + "OrganizationName": "Conway Outpatient Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.928", + "OrganizationName": "Pain Management \u0026 Rehabilitation Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73318", + "OrganizationName": "SUDESH BANAJI MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.243188", + "OrganizationName": "Advanced Spine and Pain Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.459", + "OrganizationName": "J Harley Barrow Jr MD PLLC dba The Center for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.532", + "OrganizationName": "North Central Arkansas Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73351", + "OrganizationName": "River Valley Primary Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1242", + "OrganizationName": "River Valley ENT Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71308", + "OrganizationName": "Family Medicine of White Hall, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.160004", + "OrganizationName": "White Hall Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60309", + "OrganizationName": "East Valley Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70190", + "OrganizationName": "Dr Lieber and Cloonan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72450", + "OrganizationName": "Foot and Ankle Clinics of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61275", + "OrganizationName": "The Eye Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73156", + "OrganizationName": "East Flagstaff Family Medicine, Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60978", + "OrganizationName": "Arizona Asthma \u0026 Allergy Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71750", + "OrganizationName": "Arizona Pulmonary Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72850", + "OrganizationName": "ClearPath Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71921", + "OrganizationName": "Arizona Center for Chest Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71487", + "OrganizationName": "Paradise Valley Medical Clinic, Dr. Lakin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70534", + "OrganizationName": "East Scottsdale Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71692", + "OrganizationName": "Gibson Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1231", + "OrganizationName": "Scottsdale OBGYN Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72783", + "OrganizationName": "Pain Institute of Southern Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61209", + "OrganizationName": "Arizona Endovascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60342", + "OrganizationName": "Tucson Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.738", + "OrganizationName": "Copperstate obgyn Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70531", + "OrganizationName": "Chest \u0026 Critical Care Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73736", + "OrganizationName": "Bakersfield American Indian Health Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73477", + "OrganizationName": "MOUNTAIN VALLEYS HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73178", + "OrganizationName": "Borrego Community Health Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73523", + "OrganizationName": "The Achievable Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61163", + "OrganizationName": "Spruce Multispecialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70839", + "OrganizationName": "Cardiovascular Consultants Heart Center, A Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72096", + "OrganizationName": "Pam K Janda, M.D., Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70009", + "OrganizationName": "Valley Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.196850", + "OrganizationName": "Michael W. Gromis MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70734", + "OrganizationName": "Apex Cardiology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60425", + "OrganizationName": "CHRISHARD MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70041", + "OrganizationName": "Arthritis and Osteoporosis Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70102", + "OrganizationName": "Long Beach Gastroenterology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73195", + "OrganizationName": "Long Beach Internal Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73769", + "OrganizationName": "SoCal Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1022", + "OrganizationName": "Stanislaus Cardiology Nuclear, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61419", + "OrganizationName": "Temecula Valley Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72471", + "OrganizationName": "Napa Valley Family Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72874", + "OrganizationName": "REGIONAL HEART CENTER CARDIOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.129401", + "OrganizationName": "Hayashi Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1294", + "OrganizationName": "Associated Surgeons of San Luis Obispo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72800", + "OrganizationName": "RNC Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.831804", + "OrganizationName": "Marvin Masada MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.164001", + "OrganizationName": "Jeffrey R Polito MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.164021", + "OrganizationName": "Santa Barbara Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72816", + "OrganizationName": "Michael Komin, M.D., Medical Corportion", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73659", + "OrganizationName": "Lassen Indian Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70194", + "OrganizationName": "LOS ANGELES HEART SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60370", + "OrganizationName": "Michael N. Rutman, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72283", + "OrganizationName": "Wilmington Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.200020", + "OrganizationName": "Basra Narinder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.645", + "OrganizationName": "Colorado Springs Urological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60012", + "OrganizationName": "Metro State University of Denver", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61114", + "OrganizationName": "Mountainland Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.150003", + "OrganizationName": "Dr. Gregory A. Hogle, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72219", + "OrganizationName": "Southwest Colorado Mental Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72586", + "OrganizationName": "SurgOne, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73776", + "OrganizationName": "Veros Clinical Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.508027", + "OrganizationName": "Pediatric Pathways", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1239", + "OrganizationName": "Colorado Arthritis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71730", + "OrganizationName": "Glenwood Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70961", + "OrganizationName": "Parker Pediatrics and Adolescents", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1844", + "OrganizationName": "Connecticut Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73317", + "OrganizationName": "Eastern Connecticut Foot Specialists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72231", + "OrganizationName": "Orthopedic Surgical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73000", + "OrganizationName": "US Vascular Management Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73735", + "OrganizationName": "New York Vascular Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73752", + "OrganizationName": "Aqeel M Siddiqui MD LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73751", + "OrganizationName": "Rhode Island Vascular Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70818", + "OrganizationName": "Valley Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71598", + "OrganizationName": "Mansfield Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73129", + "OrganizationName": "Balanced Wellness Primary Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70969", + "OrganizationName": "StayWell Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70543", + "OrganizationName": "Pediatric Associates of CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71115", + "OrganizationName": "Shoreline Allergy \u0026 Asthma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72454", + "OrganizationName": "Foxhall Medicine, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1669", + "OrganizationName": "Fox Hall ObGyn Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73031", + "OrganizationName": "Eranga Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70725", + "OrganizationName": "D'Souza \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73816", + "OrganizationName": "POINTE PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72127", + "OrganizationName": "Delaware Neurosurgical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61456", + "OrganizationName": "Associated Family Physicians of Boca Raton, P.L.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73774", + "OrganizationName": "Boca Raton Physicians PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.169006", + "OrganizationName": "Nicholas R. Breuer, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.747353", + "OrganizationName": "HeartCare Consultants, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1685", + "OrganizationName": "Manatee Cardiology Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61104", + "OrganizationName": "Bay Area Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1528", + "OrganizationName": "West Coast Ear, Nose \u0026 Throat, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1109", + "OrganizationName": "Daytona Heart Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71765", + "OrganizationName": "Custom Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72727", + "OrganizationName": "South Palm Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.860664", + "OrganizationName": "Gulf Urology of Englewood P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72535", + "OrganizationName": "Florida Center for Allergy \u0026 Asthma Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400286", + "OrganizationName": "Evergreen Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71588", + "OrganizationName": "Genesiscare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73262", + "OrganizationName": "The McGregor Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72324", + "OrganizationName": "Charles V. Klucka, DO, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.194011", + "OrganizationName": "Advanced Care Emergi-Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60552", + "OrganizationName": "Magnolia Medical Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72075", + "OrganizationName": "Roberta Giudice-Teller DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61408", + "OrganizationName": "RMA Properties", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71243", + "OrganizationName": "Internal Medicine of Miami Gardens, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71441", + "OrganizationName": "Center For Bone and Joint Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72321", + "OrganizationName": "CTVSA Management LLC DBA Surgical Specialists of Ocala PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61191", + "OrganizationName": "Anderson, Robert MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72941", + "OrganizationName": "Spine Intervention Specialists LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72246", + "OrganizationName": "Lakeland Volunteers in Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72643", + "OrganizationName": "BREVARD NEPHROLOGY GROUP, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61137", + "OrganizationName": "Physicians Group of South Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.736", + "OrganizationName": "Rub Pediatrics MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72373", + "OrganizationName": "Cardiology Associates Of Miami Beach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71377", + "OrganizationName": "Wing Cardiology and Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72538", + "OrganizationName": "IDC OF VOLUSIA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71631", + "OrganizationName": "PCCC of Volusia LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70590", + "OrganizationName": "Ocala Family Medical Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73244", + "OrganizationName": "Allergy and Asthma Care of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61565", + "OrganizationName": "MARION HEART CENTER PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1460", + "OrganizationName": "Ocala Kidney Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73554", + "OrganizationName": "West Orange Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60143", + "OrganizationName": "Surgical Specialists of Central Florida Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.683093", + "OrganizationName": "CLAY INTERNAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72241", + "OrganizationName": "The Surgical Group of Orlando", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61604", + "OrganizationName": "Michael M Gutierrez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72742", + "OrganizationName": "zulma cintron, md", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60913", + "OrganizationName": "East Lake Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73339", + "OrganizationName": "Castillo \u0026 Torres MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73281", + "OrganizationName": "Emerald Coast Center for Neurological Disorders", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1357", + "OrganizationName": "Woodlands Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71788", + "OrganizationName": "Specialist Doctor's Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73081", + "OrganizationName": "Aneley Hundae Port Charlotte Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72796", + "OrganizationName": "Charlotte Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72526", + "OrganizationName": "MIDISC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70340", + "OrganizationName": "DR Medical Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70176", + "OrganizationName": "Suntree Medical Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.133", + "OrganizationName": "Brevard Ear, Nose and Throat Center PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73052", + "OrganizationName": "Flagler Hospital, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73764", + "OrganizationName": "Harbour Island Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.694", + "OrganizationName": "Bay Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71276", + "OrganizationName": "SMH Physician Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70573", + "OrganizationName": "Aesculapian Mgmt dba Intercoastal Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71889", + "OrganizationName": "Negroski, Stein, Sutherland \u0026 Hanes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73573", + "OrganizationName": "Heart and Vascular Center of Sarasota, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71720", + "OrganizationName": "Neurosurgery and Spine Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400385", + "OrganizationName": "Meyer Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71998", + "OrganizationName": "FLORIDA JOINT AND SPINE INSTITUTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60407", + "OrganizationName": "Fabio Oliveros", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72257", + "OrganizationName": "North Florida Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70662", + "OrganizationName": "Drs. Rosario and Crespo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70677", + "OrganizationName": "AAIA Tampa Bay, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61399", + "OrganizationName": "Pediatric Pulmonary Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73258", + "OrganizationName": "landmark primary care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60862", + "OrganizationName": "Orthopaedic Center of Venice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72264", + "OrganizationName": "Ear, Nose, Throat and Sinus Center, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1485", + "OrganizationName": "Surgical Associates of Venice \u0026 Englewood", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71320", + "OrganizationName": "Treasure Coast Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71182", + "OrganizationName": "Primed Billing LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71213", + "OrganizationName": "Winter Park Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70901", + "OrganizationName": "Intellisight", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61345", + "OrganizationName": "Florida Medical Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60371", + "OrganizationName": "Atlanta Cardiology Consultants, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.794", + "OrganizationName": "Urology Group of Athens, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73179", + "OrganizationName": "Georgia Infectious Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1269", + "OrganizationName": "Atlanta Clinical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1107", + "OrganizationName": "Primary Care Physicians of Atlanta, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1858", + "OrganizationName": "Cardiology of Atlanta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1749", + "OrganizationName": "Sandy Springs Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.396886", + "OrganizationName": "North Atlanta Kidney Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.756378", + "OrganizationName": "Augusta Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1168", + "OrganizationName": "NORTH GEORGIA PAIN CLINIC, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1603", + "OrganizationName": "Carrollton Orthopaedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60964", + "OrganizationName": "Southeast Regional Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.103", + "OrganizationName": "Wellness First PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61265", + "OrganizationName": "New Beginnings Comprehensive Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70760", + "OrganizationName": "Southeastern Lung Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.422", + "OrganizationName": "CARDIOLOGY CENTER OF DALTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.401", + "OrganizationName": "Cornerstone Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71016", + "OrganizationName": "Atlanta Gyn and OB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.525008", + "OrganizationName": "Diabetes and Endocrinology Associates P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400261", + "OrganizationName": "North Atlanta Endocrinology and Diabetes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61054", + "OrganizationName": "George S. Stefanis, M.D.,P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70001", + "OrganizationName": "Smith-Lambert Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71675", + "OrganizationName": "Milledgeville OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1501", + "OrganizationName": "Lily Obgyn, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.153", + "OrganizationName": "Urological Associates of Savannah PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1047", + "OrganizationName": "Savannah Neurology Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.774191", + "OrganizationName": "Genesis Healthcare Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72215", + "OrganizationName": "Snellville Pediatrics P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71439", + "OrganizationName": "McDuffie Surgical Clinic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73507", + "OrganizationName": "Centers for Pain Management of Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71732", + "OrganizationName": "Guam SDA Clinic\ufffd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.511001", + "OrganizationName": "Hawaii Ear Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1469", + "OrganizationName": "Maui Cardiology Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.236", + "OrganizationName": "Wellendorf ENT, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72613", + "OrganizationName": "Advanced Spine and Rehab Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.756", + "OrganizationName": "OB-Gyn Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1700", + "OrganizationName": "Dubuque Obstetrics and Gynecology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72434", + "OrganizationName": "Medical Associates of Maquoketa PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1521", + "OrganizationName": "Ringgold County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72558", + "OrganizationName": "Jordan Creek Family Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71113", + "OrganizationName": "Des Moines Orthopaedic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1701", + "OrganizationName": "West Des Moines Ob-Gyn Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72467", + "OrganizationName": "Coeur Obstetrics and Gynecology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72489", + "OrganizationName": "Sandpoint Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61059", + "OrganizationName": "AMERICAS FAMILY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60352", + "OrganizationName": "Michael J Cerny MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1576", + "OrganizationName": "Lake Shore Obstetrics \u0026 Gynecology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.656256", + "OrganizationName": "Cardiothoracic Vascular Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71577", + "OrganizationName": "Rheumatic Disease Center Physicians, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400209", + "OrganizationName": "North Shore Consultants in OB GYN, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71952", + "OrganizationName": "Neurology of Southern Illinois", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1454", + "OrganizationName": "Southern Illinois Ob-Gyn Associates, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72775", + "OrganizationName": "Medical Arts Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61286", + "OrganizationName": "IMA/JCH Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72646", + "OrganizationName": "Gastroenterology Consultants of the north shore", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70987", + "OrganizationName": "Regency Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61178", + "OrganizationName": "Lake Barrington Womens Health Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1147", + "OrganizationName": "Obgyne Associates of libertyville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.70301", + "OrganizationName": "Providea Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72044", + "OrganizationName": "Orthopedics of Illinois", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73789", + "OrganizationName": "Pramern Sriratana MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.693", + "OrganizationName": "Dr. Thornton and Haas MD SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70600", + "OrganizationName": "Roseann Brady, D.O., S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73667", + "OrganizationName": "Illinois Surgical Specialists, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1570", + "OrganizationName": "Suburban Ear Nose \u0026 Throat Assoc., Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73063", + "OrganizationName": "Johnson Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72551", + "OrganizationName": "Fox Valley Ent Assoc\ufffd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71086", + "OrganizationName": "LAKE COUNTY NEUROLOGICAL ASSOCIATES, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71526", + "OrganizationName": "Central Indiana Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400335", + "OrganizationName": "Midwest Colon and Rectal Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70317", + "OrganizationName": "Southern Indiana Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72103", + "OrganizationName": "Elwood Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71249", + "OrganizationName": "Evansville Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72187", + "OrganizationName": "Allen County Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.576", + "OrganizationName": "Associated Surgeons and Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72532", + "OrganizationName": "Gerig Surgical Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400139", + "OrganizationName": "Weng Peng, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71563", + "OrganizationName": "Midwest Ear Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400212", + "OrganizationName": "David B. Ensley, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1753", + "OrganizationName": "Josephson-Wallack-Munshower Neurology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72402", + "OrganizationName": "Esguerra Medical Practice, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.475963", + "OrganizationName": "Centers for Neurological Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70617", + "OrganizationName": "Misawaka Orthopedics and Sports Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71316", + "OrganizationName": "Dianna L Andrews MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.930", + "OrganizationName": "Labette Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70793", + "OrganizationName": "Advanced Pain Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72412", + "OrganizationName": "Bellefonte Medical Center, Inc.\ufffd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61385", + "OrganizationName": "Leitchfield Pediatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61440", + "OrganizationName": "Bluegrass Orthopaedics, PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.523", + "OrganizationName": "Kentucky Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72407", + "OrganizationName": "Ellis \u0026 Badenhausen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61141", + "OrganizationName": "Pain Management Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73379", + "OrganizationName": "LDH/OPH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1473", + "OrganizationName": "ENT LA MSO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.145002", + "OrganizationName": "Schultis, Landry, and Guillory, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73089", + "OrganizationName": "Houma Orthopedic Clinic (A Medical Corporation)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71135", + "OrganizationName": "North La Orthopaedic \u0026 Sports Medicine Clinic, AMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71800", + "OrganizationName": "Allen's Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71614", + "OrganizationName": "Green Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73006", + "OrganizationName": "St Gabriel Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1594", + "OrganizationName": "Ear, Nose \u0026 Throat Center, AMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1077", + "OrganizationName": "OBG-1 of West Calcasieu Cameron Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73230", + "OrganizationName": "Franklin Foot Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61387", + "OrganizationName": "Cape Cod Surgical Associates Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60885", + "OrganizationName": "Pioneer Valley Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72197", + "OrganizationName": "Rheumatology associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.782690", + "OrganizationName": "Sorrell Neurology Services INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1020", + "OrganizationName": "Valley Women's Health Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.302", + "OrganizationName": "ENT for Children", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72272", + "OrganizationName": "M. Slutsky \u0026 Assoc., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.931", + "OrganizationName": "The Heart Center of Northern Anne Arundel County, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61371", + "OrganizationName": "Joann Urquhart, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.608025", + "OrganizationName": "Maryland Medical Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.519005", + "OrganizationName": "Montgomery Medical Associates, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1830", + "OrganizationName": "Great Lakes Surgical Associates, Jeffrey Smith MD, PC DBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60845", + "OrganizationName": "Generations OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1697", + "OrganizationName": "Glendale Neurological Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.947185", + "OrganizationName": "Flint OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.730", + "OrganizationName": "Michigan Healthcare Professionals dba Preferred Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70282", + "OrganizationName": "Internal Medicine of West Michigan,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1003", + "OrganizationName": "Urology Associates of Grand Rapids PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1672", + "OrganizationName": "Pediatric Ophthalmology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71454", + "OrganizationName": "Hillsdale Medical Associates, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400051", + "OrganizationName": "BlueWater Medical Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72936", + "OrganizationName": "Saginaw Chippewa Indian Tribe", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.521003", + "OrganizationName": "Anchor Bay Clinic Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.821531", + "OrganizationName": "Great Lakes Ear Nose \u0026 Throat Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71580", + "OrganizationName": "John Mullally MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73173", + "OrganizationName": "Trestlewood Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73294", + "OrganizationName": "Contemporary Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1281", + "OrganizationName": "Colon Rectal Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.521004", + "OrganizationName": "Advanced Cardiology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1621", + "OrganizationName": "St Clair Orthopaedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61308", + "OrganizationName": "Munson Healthcare OMH Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.20604", + "OrganizationName": "Michigan Adult \u0026 Child Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72615", + "OrganizationName": "Lac Vieux Desert Band of Lake Superior Chippewa Indians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71078", + "OrganizationName": "Labonte Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.523001", + "OrganizationName": "Lintecum \u0026 Nickell PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73660", + "OrganizationName": "AT Still University Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73033", + "OrganizationName": "St. Peters Bone \u0026 Joint Surgery, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400393", + "OrganizationName": "Platte County Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71486", + "OrganizationName": "Feet For Life Centers Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73319", + "OrganizationName": "Brookhaven Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.853", + "OrganizationName": "Brookhaven Surgery Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.907", + "OrganizationName": "Brookhaven OBGYN Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71829", + "OrganizationName": "Columbus UROLOGY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71723", + "OrganizationName": "Jackson Healthcare for Women PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72806", + "OrganizationName": "NewSouth NeuroSpine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72861", + "OrganizationName": "Greenwood Comprehensive Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.323", + "OrganizationName": "Jackson Pulmonary Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.187", + "OrganizationName": "The Womans Clinic of Mississippi PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.782", + "OrganizationName": "Comprehensive Pain Center of Mississippi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73623", + "OrganizationName": "Internal Medicine Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.95004", + "OrganizationName": "Oxford Clinc for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72336", + "OrganizationName": "MRMC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1628", + "OrganizationName": "Bienville Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71897", + "OrganizationName": "Carolina Nuclear Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70549", + "OrganizationName": "alliance medical associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73144", + "OrganizationName": "David P Adams MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109001", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109002", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109003", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109004", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109005", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109006", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.10900601", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109007", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109009", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109010", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.109011", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.172", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.585", + "OrganizationName": "Hugh Chatham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61582", + "OrganizationName": "Gastonia Medical Specialty Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72973", + "OrganizationName": "Urgent Care of Mountain View", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73177", + "OrganizationName": "Burke Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400300", + "OrganizationName": "Walters Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.123401", + "OrganizationName": "HORMOZE A GOUDARZI MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73377", + "OrganizationName": "Columbus Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.511182", + "OrganizationName": "Columbus Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.105015", + "OrganizationName": "Columbus Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70999", + "OrganizationName": "MD West One", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73374", + "OrganizationName": "Foot Care Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400353", + "OrganizationName": "Fremont Neurology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71731", + "OrganizationName": "Family Practice of Grand Island P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73360", + "OrganizationName": "Family Medical Center of Hastings", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71068", + "OrganizationName": "Alivation Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71581", + "OrganizationName": "Nebraska Spine Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400455", + "OrganizationName": "Arbor Heights Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.528002", + "OrganizationName": "Prairie Creek Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72809", + "OrganizationName": "Atlantic Digestive Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.135003", + "OrganizationName": "Dominick Condo, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400180", + "OrganizationName": "Patrick F. Saulino, MD, LLC\ufffd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71163", + "OrganizationName": "Internal Medicine Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72983", + "OrganizationName": "OSBORN FAMILY HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1039", + "OrganizationName": "Medemerge Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71493", + "OrganizationName": "Eatontown Medical Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61626", + "OrganizationName": "The Neuroscience Center of Northern NJ, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60912", + "OrganizationName": "Tri-County Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71422", + "OrganizationName": "shore heart group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.351", + "OrganizationName": "shore pulmonary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400381", + "OrganizationName": "C DICOVSKY MEDICAL GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61566", + "OrganizationName": "MAZZUCA EYE AND LASER CENTERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.917139", + "OrganizationName": "DR Mascarenhas Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72190", + "OrganizationName": "Randolph Medical \u0026 Renal Associates P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71872", + "OrganizationName": "Integrated Medicine Alliance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1190", + "OrganizationName": "Jersey Urology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70885", + "OrganizationName": "Ocean Pulmonary Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61585", + "OrganizationName": "CG Healthcare Sollutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400435", + "OrganizationName": "Atlantic ENT Associates P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.762", + "OrganizationName": "Hamilton Cardiology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.135001", + "OrganizationName": "Firstcare Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.7102002", + "OrganizationName": "Cumberland Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70698", + "OrganizationName": "Comprehensive Cancer and Hematology Specialist, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70795", + "OrganizationName": "El Pueblo Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72546", + "OrganizationName": "Four Corners Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400453", + "OrganizationName": "Family Medicine Partners of Santa Fe, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70244", + "OrganizationName": "CLINICAL NEUROLOGY SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71601", + "OrganizationName": "Box Canyon Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72761", + "OrganizationName": "Kittusamy LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70084", + "OrganizationName": "Luis L Diaz MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72343", + "OrganizationName": "HEART CENTER OF NEVADA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71924", + "OrganizationName": "Reno Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71246", + "OrganizationName": "Sierra Nevada Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61246", + "OrganizationName": "Albany Gastroenterology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71355", + "OrganizationName": "Mathew T Chengot MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71506", + "OrganizationName": "Sarita K. Dorschug D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400085", + "OrganizationName": "Klapper \u0026 Deluca Pulmonary Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70206", + "OrganizationName": "Family Medicine of Carthage, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70791", + "OrganizationName": "GI Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1542", + "OrganizationName": "Crossbay Medical Services PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61635", + "OrganizationName": "Orthopedic Spine Care of Long Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71482", + "OrganizationName": "Mt Vernon Neighborhood Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61756", + "OrganizationName": "Physicians Pain Treatment Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72769", + "OrganizationName": "Morgenstern-Bonheur Medical Group PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70653", + "OrganizationName": "Paul L Schulster MDPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72152", + "OrganizationName": "Nathan W. Keever", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61780", + "OrganizationName": "ConnextCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72339", + "OrganizationName": "Maria Lourdes S. Alcasid-Escano MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71168", + "OrganizationName": "Decerina Uy MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400400", + "OrganizationName": "Brij Sharma Physician PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.722", + "OrganizationName": "Massapequa Heart Group,Ny", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.179004", + "OrganizationName": "Dr. Mark Zuckerman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61669", + "OrganizationName": "Our Neighborhood Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71515", + "OrganizationName": "Metropolitan New York Medicine \u0026 Infectious Disease, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.822", + "OrganizationName": "Riverhills Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400304", + "OrganizationName": "Rivers Edge Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1508", + "OrganizationName": "Pediatric Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1866", + "OrganizationName": "Caro Pediatric Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60952", + "OrganizationName": "Robert G. Samaan, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.699", + "OrganizationName": "Obstetrics and Gynecology Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1689", + "OrganizationName": "Blanchard Valley Medical Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.535018", + "OrganizationName": "River Valley Orthopaedics \u0026 Sports Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72999", + "OrganizationName": "Health Partners of Western Ohio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.870", + "OrganizationName": "OB GYN Specialists of Lima", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71745", + "OrganizationName": "Cardiovascular Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73146", + "OrganizationName": "Northern Ohio Family Practice\ufffd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.612", + "OrganizationName": "Southern Ohio Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1332", + "OrganizationName": "Northside Family Physicians. LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71186", + "OrganizationName": "Oklahoma Allergy \u0026 Asthma Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60369", + "OrganizationName": "John E Stecklow MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.973232", + "OrganizationName": "Just Kids Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1334", + "OrganizationName": "Digestive Disease Specialists, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71361", + "OrganizationName": "Stigler Health \u0026 Wellness Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73380", + "OrganizationName": "Family Health Center of Southern Oklahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73165", + "OrganizationName": "Invictus Healthcare System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1601", + "OrganizationName": "Tulsa Bone and Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73302", + "OrganizationName": "ECO Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60194", + "OrganizationName": "WILLIAM P MAIER MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61630", + "OrganizationName": "Oak Street Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400464", + "OrganizationName": "Willamette Foot Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60460", + "OrganizationName": "Pendleton Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61288", + "OrganizationName": "Pacific Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70855", + "OrganizationName": "Adaugeo Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1209", + "OrganizationName": "Pediatric Specialists of Pendleton, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61688", + "OrganizationName": "Cynthia Gulick PC DBA Southwest Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73586", + "OrganizationName": "Portland Diabetes \u0026 Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.174", + "OrganizationName": "Allegheny Surgical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70456", + "OrganizationName": "Bryn Mawr Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71990", + "OrganizationName": "Bedford Regional Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61664", + "OrganizationName": "Centerville Clinics, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73431", + "OrganizationName": "Otolaryngology Physicians of Lancaster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61681", + "OrganizationName": "Diamantoni and Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71616", + "OrganizationName": "Rheumatology Associates, Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71532", + "OrganizationName": "Healthcare Billing Consultants, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73304", + "OrganizationName": "Sayre Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72169", + "OrganizationName": "Vujevich Dermatology Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70731", + "OrganizationName": "Pittsburgh Oculoplastic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71185", + "OrganizationName": "Grand View-Lehigh Valley Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71838", + "OrganizationName": "Pennridge Pediatric Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73373", + "OrganizationName": "Steelton Family Practice and Welness Cener", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71938", + "OrganizationName": "Ophthalmology Associates of York", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73353", + "OrganizationName": "CONCILIO DE SALUD INTEGRAL DE LOIZA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73306", + "OrganizationName": "Med Centro, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73410", + "OrganizationName": "Autonomous Municipality of San Juan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70043", + "OrganizationName": "The Center for Orthopaedics Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70015", + "OrganizationName": "University Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72022", + "OrganizationName": "Comprehensive Practice Management Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73295", + "OrganizationName": "RI NEUROLOGY GROUP, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1781", + "OrganizationName": "Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.427", + "OrganizationName": "Lowcountry Urology Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.125004", + "OrganizationName": "Easley Head and Neck Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.654", + "OrganizationName": "james t martin, jr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73267", + "OrganizationName": "Walterboro Adult \u0026 Pediatric Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72881", + "OrganizationName": "Mukeah M Gandhi M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71180", + "OrganizationName": "Black Hills Orthopedic \u0026 Spine Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72319", + "OrganizationName": "Mid-South Dermatology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72916", + "OrganizationName": "Your Good Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71772", + "OrganizationName": "University Surgical Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1116", + "OrganizationName": "Regional Obstetrical Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71686", + "OrganizationName": "Middle Tennessee Ear, Nose, and Throat specialists PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71851", + "OrganizationName": "HealthQuest PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71280", + "OrganizationName": "Medical Insurance Filing Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72652", + "OrganizationName": "Caballero Family Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.105075", + "OrganizationName": "Gordonsville Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72094", + "OrganizationName": "Core Heart \u0026 Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1579", + "OrganizationName": "Associated Orthopaedics of Kingsport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71045", + "OrganizationName": "Premier SUrgical Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73784", + "OrganizationName": "University Spine/Sports Specialists, PLLC\ufffd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61117", + "OrganizationName": "University Physicians' Association", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72611", + "OrganizationName": "University Physicians' Association Knox County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71521", + "OrganizationName": "Associated Pain Specialists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72064", + "OrganizationName": "Rheumatology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.408", + "OrganizationName": "KNOXVILLE KIDNEY CENTER, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.161012", + "OrganizationName": "Family Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72938", + "OrganizationName": "Tristate Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72099", + "OrganizationName": "THE HEART CENTER OF MEMPHIS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61396", + "OrganizationName": "Perisco Wofford MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72952", + "OrganizationName": "East Memphis Neonatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400379", + "OrganizationName": "Covington Internal Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71942", + "OrganizationName": "Henry County Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.240001", + "OrganizationName": "Henry County Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.240000", + "OrganizationName": "Henry County Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71831", + "OrganizationName": "CRIPPS, HOOPER \u0026 RHODY, PLLC DBA FAMILY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71057", + "OrganizationName": "Amarillo Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72070", + "OrganizationName": "Texas Pulmonary \u0026 Critical Care Consultants, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60405", + "OrganizationName": "SHERRY NUSSBAUM MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1552", + "OrganizationName": "Arlington Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.565", + "OrganizationName": "Highlander Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72334", + "OrganizationName": "Thomas S. Loftus, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.548008", + "OrganizationName": "Sammy Lerma, III, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60095", + "OrganizationName": "Metroplex Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1638", + "OrganizationName": "Texas Orthopedic Specialists, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.976", + "OrganizationName": "Jennifer Meadows MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60285", + "OrganizationName": "Retina Institute of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60208", + "OrganizationName": "North Texas Infectious Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.729", + "OrganizationName": "Northlake Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400078", + "OrganizationName": "Emmar Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1260", + "OrganizationName": "Advanced Vein and Vascular Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61544", + "OrganizationName": "advanced foot and ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71893", + "OrganizationName": "Allergy \u0026 Asthma Center of Georgetown", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73330", + "OrganizationName": "South Limestone Hospital District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71288", + "OrganizationName": "Women's Health Center, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.400109", + "OrganizationName": "Medical Center Ear, Nose \u0026 Throat Associates of Houston, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71798", + "OrganizationName": "Healthcare Transformation Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70242", + "OrganizationName": "Macarthur ObGyn Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70857", + "OrganizationName": "Medical Colleagues of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61409", + "OrganizationName": "Katy Womens Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70724", + "OrganizationName": "Robert Morales M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72576", + "OrganizationName": "Practice Champions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73183", + "OrganizationName": "Satir and Satir, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61679", + "OrganizationName": "Donald D. Davenport Jr., D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70939", + "OrganizationName": "Faye G. Armstrong-Paap M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.991", + "OrganizationName": "C. L. Anderson Jr., MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72596", + "OrganizationName": "Paris Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.582", + "OrganizationName": "Heart Clinic of Paris", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60368", + "OrganizationName": "Willow Bend Family Medicine, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.976819", + "OrganizationName": "Louis A. Torres Jr., M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.307", + "OrganizationName": "Bruce L. Russell, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1181", + "OrganizationName": "Endocrinology Nuclear Medicine Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.347892", + "OrganizationName": "Craig Cardiovascular Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70505", + "OrganizationName": "Tomball Regional Internal Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70249", + "OrganizationName": "Tomball Healthcare for Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71907", + "OrganizationName": "Four Seasons Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72296", + "OrganizationName": "Medical \u0026 Heart Center, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70313", + "OrganizationName": "Allergy \u0026 Asthma Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.60943", + "OrganizationName": "Intermountain Medical Holdings Nevada", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73221", + "OrganizationName": "Neurosurgical Specialists Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71895", + "OrganizationName": "PAIN MANAGEMENT AND ORTHOPEDIC CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.484907", + "OrganizationName": "Cardiology Consultants of Danville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72447", + "OrganizationName": "Neurology Center of Fairfax, Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61493", + "OrganizationName": "Veinguard Heart and Vascular Center (formerly Virginia Heart Inc)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1564", + "OrganizationName": "Shenandoah Valley Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1783", + "OrganizationName": "OBGYN Associates Womens Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71812", + "OrganizationName": "MEDICAL BILLING OF VIRGINIA, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1475", + "OrganizationName": "Martinsville Neurological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.710", + "OrganizationName": "West Gynecology and Medical Spa, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70803", + "OrganizationName": "Associates In Primary Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70905", + "OrganizationName": "Neurology Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.405", + "OrganizationName": "Virginia Physicians for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72142", + "OrganizationName": "Virginia South Psychiatric \u0026 Family Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61556", + "OrganizationName": "Patrick County Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71433", + "OrganizationName": "Neurology Associates of Suffolk PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1021", + "OrganizationName": "Wythe Women's Health, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73332", + "OrganizationName": "St Thomas East End Health Center Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73711", + "OrganizationName": "Pediatrics Associates dba Allegro Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73626", + "OrganizationName": "Kirkpatrick Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71885", + "OrganizationName": "Whidbey Medical Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73054", + "OrganizationName": "Nisqually Tribal Health and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70639", + "OrganizationName": "Franciscan Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72522", + "OrganizationName": "Spokane Valley Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.72365", + "OrganizationName": "Gilman Family Practice, PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.336", + "OrganizationName": "Hudson's Bay Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.560001", + "OrganizationName": "poser clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73753", + "OrganizationName": "Sokaogon Chippewa Community Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71975", + "OrganizationName": "Milwaukee Nephrologists, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71671", + "OrganizationName": "Shoreview Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61718", + "OrganizationName": "Interventional Pain Specialists of WI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.1832", + "OrganizationName": "Alum Creek Medical Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71727", + "OrganizationName": "Harold E Harvey II MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71927", + "OrganizationName": "Belington Community Medical Services Association", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71991", + "OrganizationName": "Camden On Gauley Medical Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71959", + "OrganizationName": "Spring Hill Primary Care Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.94002", + "OrganizationName": "Charleston Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.94031", + "OrganizationName": "Dunbar Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71457", + "OrganizationName": "Monongahela Valley Association of Health Centers, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73311", + "OrganizationName": "Ritchie Regional Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61599", + "OrganizationName": "St. Mary's HIMG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71392", + "OrganizationName": "Bluestone Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.73328", + "OrganizationName": "Roane County Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.71937", + "OrganizationName": "Monroe Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.61492", + "OrganizationName": "Edward K. Chiu, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.140.70750", + "OrganizationName": "Cheyenne Urological, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir-api.fhirprod.aws.greenwayhealth.com/fhir/R4/2.16.840.1.113883.3.441.526002", + "OrganizationName": "CHEYENNE ORTHOPAEDICS, PC", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/Health_Care_Systems_Inc_EndpointSources.json b/resources/prod_resources/Health_Care_Systems_Inc_EndpointSources.json new file mode 100644 index 000000000..f5b3c4bca --- /dev/null +++ b/resources/prod_resources/Health_Care_Systems_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api", + "OrganizationName": "Demo", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/InPracSys_EndpointSources.json b/resources/prod_resources/InPracSys_EndpointSources.json new file mode 100644 index 000000000..7ee9f5302 --- /dev/null +++ b/resources/prod_resources/InPracSys_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fhirips.azurehealthcareapis.com", + "OrganizationName": "", + "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 cbb912cdf..094e4e26a 100644 --- a/resources/prod_resources/MEDHOST_EndpointSources.json +++ b/resources/prod_resources/MEDHOST_EndpointSources.json @@ -1,5 +1,11 @@ { "Endpoints": [ + { + "URL": "https://fhir.yourcareuniverse.net/tenant/ed6a665c-b100-4cee-b23d-6197c0e9c9ee", + "OrganizationName": "AHS Vista Health System - East", + "NPIID": "1992856819", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.yourcareuniverse.net/tenant/0ddc7794-d4a3-4d17-a674-9187af28aea6", "OrganizationName": "ANTELOPE MEMORIAL HOSPITAL", @@ -306,12 +312,6 @@ "NPIID": "1437259694", "OrganizationZipCode": "" }, - { - "URL": "https://fhir.yourcareuniverse.net/tenant/6dfcc510-ec10-4e48-b212-92db24d64256", - "OrganizationName": "Helena Regional Medical Center", - "NPIID": "1154392090", - "OrganizationZipCode": "" - }, { "URL": "https://fhir.yourcareuniverse.net/tenant/f25a1e6a-ed78-4641-a1c6-fcebfa80bf1b", "OrganizationName": "Holdenville General Hospital", @@ -326,7 +326,7 @@ }, { "URL": "https://fhir.yourcareuniverse.net/tenant/48677b2b-5c2a-49f5-9750-c55785639ac4", - "OrganizationName": "IIP03 0048", + "OrganizationName": "IIP03 0048 - HealthHub Hospital", "NPIID": "", "OrganizationZipCode": "" }, @@ -660,6 +660,12 @@ "NPIID": "1609842251", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.yourcareuniverse.net/tenant/6dfcc510-ec10-4e48-b212-92db24d64256", + "OrganizationName": "Progressive Health of Helena", + "NPIID": "1154392090", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.yourcareuniverse.net/tenant/f327cec7-4de5-4375-82d1-b7722f053133", "OrganizationName": "Quitman Community Hospital", @@ -798,12 +804,6 @@ "NPIID": "1780761866", "OrganizationZipCode": "" }, - { - "URL": "https://fhir.yourcareuniverse.net/tenant/ed6a665c-b100-4cee-b23d-6197c0e9c9ee", - "OrganizationName": "Vista Health System - East", - "NPIID": "1992856819", - "OrganizationZipCode": "" - }, { "URL": "https://fhir.yourcareuniverse.net/tenant/e21d6544-b3b7-44c8-8df0-60cd8284ed13", "OrganizationName": "Watsonville Community Hospital", diff --git a/resources/prod_resources/MaxRemind_Inc_EndpointSources.json b/resources/prod_resources/MaxRemind_Inc_EndpointSources.json new file mode 100644 index 000000000..062a5ab83 --- /dev/null +++ b/resources/prod_resources/MaxRemind_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.maximus.care/api", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/MedicaSoft_LLC_EndpointSources.json b/resources/prod_resources/MedicaSoft_LLC_EndpointSources.json new file mode 100644 index 000000000..c642d7038 --- /dev/null +++ b/resources/prod_resources/MedicaSoft_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://r4cert.medicasoft.us/api/fhir", + "OrganizationName": "MedicaSoft Sandbox", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file 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 e7860b7a9..93a6d2539 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 @@ -1524,6 +1524,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mrhmeapi.meditech.cloud:443/v2/argonaut/v1", + "OrganizationName": "Millinocket Reg Hosp POD 006 10", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mrtx-mapilive.primehealthcare.com:443/v2/argonaut/v1", "OrganizationName": "Mission Regional Medical Center-C/S", @@ -1566,6 +1572,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mchdapi.meditech.cloud:443/v2/argonaut/v1", + "OrganizationName": "Moore Cnty Hosp District MaaS Pod 011 10", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mcchapi.meditech.cloud:443/v2/argonaut/v1", "OrganizationName": "Morrill County Community Hosp. MaaS Pod 007 09", @@ -2592,6 +2604,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mtrestapis-live-uvm.teknicorhosting.com:443/v2/argonaut/v1", + "OrganizationName": "Uvalde Memorial Hosp 6.x Migration (Hosted by Teknicor)", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live01.vvrmc.org:443/v2/argonaut/v1", "OrganizationName": "Val Verde Reg Med Ctr Expanse (Hosted by Engage)", @@ -4266,6 +4284,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mrhmeapi.meditech.cloud:443/v1/uscore/R4", + "OrganizationName": "Millinocket Reg Hosp POD 006 10", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mrtx-mapilive.primehealthcare.com:443/v1/uscore/R4", "OrganizationName": "Mission Regional Medical Center-C/S", @@ -4308,6 +4332,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mchdapi.meditech.cloud:443/v1/uscore/R4", + "OrganizationName": "Moore Cnty Hosp District MaaS Pod 011 10", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mcchapi.meditech.cloud:443/v1/uscore/R4", "OrganizationName": "Morrill County Community Hosp. MaaS Pod 007 09", @@ -5334,6 +5364,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mtrestapis-live-uvm.teknicorhosting.com:443/v1/uscore/R4", + "OrganizationName": "Uvalde Memorial Hosp 6.x Migration (Hosted by Teknicor)", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live01.vvrmc.org:443/v1/uscore/R4", "OrganizationName": "Val Verde Reg Med Ctr Expanse (Hosted by Engage)", diff --git a/resources/prod_resources/Office_Practicum_EndpointSources.json b/resources/prod_resources/Office_Practicum_EndpointSources.json index a5507b11d..0eef73c28 100644 --- a/resources/prod_resources/Office_Practicum_EndpointSources.json +++ b/resources/prod_resources/Office_Practicum_EndpointSources.json @@ -156,6 +156,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://applications.op.healthcare/3143/api/FHIR/R4", + "OrganizationName": "Care Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://applications.op.healthcare/603/api/FHIR/R4", "OrganizationName": "Caring Hands Pediatrics", @@ -1290,6 +1296,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://applications.op.healthcare/1272/api/FHIR/R4", + "OrganizationName": "Rainbow Pediatrics Inc WV", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://applications.op.healthcare/1683/api/FHIR/R4", "OrganizationName": "Raymond Kahn MD TX", @@ -1458,6 +1470,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://applications.op.healthcare/1978/api/FHIR/R4", + "OrganizationName": "Steel City Pediatrics PC CO", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://applications.op.healthcare/797/api/FHIR/R4", "OrganizationName": "Sudarsan Kamisetty MD PA", diff --git a/resources/prod_resources/Practice_Fusion_EndpointSources.json b/resources/prod_resources/Practice_Fusion_EndpointSources.json index dc0ec8de1..8e004a11f 100644 --- a/resources/prod_resources/Practice_Fusion_EndpointSources.json +++ b/resources/prod_resources/Practice_Fusion_EndpointSources.json @@ -2,13 +2,13 @@ "Endpoints": [ { "URL": "https://api.patientfusion.com/fhir/r4/v1/118b460b-8390-4754-8e4a-1dd5ee20f599", - "OrganizationName": "WompWompWomp", + "OrganizationName": "Phenomenal Practice Tester", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/118b460b-8390-4754-8e4a-1dd5ee20f599", - "OrganizationName": "WompWompWomp", + "OrganizationName": "Phenomenal Practice Tester", "NPIID": "", "OrganizationZipCode": "" }, @@ -2232,6 +2232,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/1d877af0-ed37-4c9c-8ed4-8f1afd543303", + "OrganizationName": "Bristol Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", "OrganizationName": "Infectious Disease Consultants (IDC)", @@ -2257,38 +2269,50 @@ "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/2e5ad6a4-52c4-412c-9ab8-fa1c2200dd81", + "OrganizationName": "Mir Asghar MD PLLC", "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/2e5ad6a4-52c4-412c-9ab8-fa1c2200dd81", + "OrganizationName": "Mir Asghar MD PLLC", "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/137f2793-28a0-4df9-b598-0693e7d1afe6", + "OrganizationName": "Foot of the Mountains PLLC", "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/137f2793-28a0-4df9-b598-0693e7d1afe6", + "OrganizationName": "Foot of the Mountains PLLC", "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/040dd464-1e78-45a9-a955-f6487aa0c4f3", + "OrganizationName": "Luxury Psychiatry and Telepsychiatry", "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/040dd464-1e78-45a9-a955-f6487aa0c4f3", + "OrganizationName": "Luxury Psychiatry and Telepsychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/04aa7380-0df6-499f-a0f0-df715c838838", + "OrganizationName": "ReMind Health Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -2318,25 +2342,13 @@ }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6e172775-d2db-4597-9adc-1974ab69b5a7", - "OrganizationName": "Transitional Care Physicians of Georgia P.C.", + "OrganizationName": "Chronic Disease Management of Georgia P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "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/040dd464-1e78-45a9-a955-f6487aa0c4f3", - "OrganizationName": "Luxury Psychiatry and Telepsychiatry", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/040dd464-1e78-45a9-a955-f6487aa0c4f3", - "OrganizationName": "Luxury Psychiatry and Telepsychiatry", + "OrganizationName": "Chronic Disease Management of Georgia P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -2352,30 +2364,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/137f2793-28a0-4df9-b598-0693e7d1afe6", - "OrganizationName": "Foot of the Mountains PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/04aa7380-0df6-499f-a0f0-df715c838838", - "OrganizationName": "ReMind Health Group", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", "OrganizationName": "Rizzi Psychiatric Associates", @@ -2460,6 +2448,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f25e8eb4-20ed-480a-8da8-63352b9fa050", + "OrganizationName": "Acclaim Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f25e8eb4-20ed-480a-8da8-63352b9fa050", + "OrganizationName": "Acclaim Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", "OrganizationName": "J.F.K. Pediatrics", @@ -2473,26 +2473,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/3663c97e-7e9c-477e-a110-6191dd3c1d0d", + "OrganizationName": "Pimienta MD Clinic", "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/3663c97e-7e9c-477e-a110-6191dd3c1d0d", + "OrganizationName": "Pimienta MD Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f25e8eb4-20ed-480a-8da8-63352b9fa050", - "OrganizationName": "Acclaim Neurology", + "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/f25e8eb4-20ed-480a-8da8-63352b9fa050", - "OrganizationName": "Acclaim Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", + "OrganizationName": "Scenic City Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -2521,26 +2521,26 @@ "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/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", + "OrganizationName": "Eastside Nephrology", "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/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/7a321c09-d5a5-475e-a84d-26f5665edf01", + "OrganizationName": "Integrative Headache Clinic", "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/7a321c09-d5a5-475e-a84d-26f5665edf01", + "OrganizationName": "Integrative Headache Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -2568,18 +2568,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/7a321c09-d5a5-475e-a84d-26f5665edf01", - "OrganizationName": "Integrative Headache Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", "OrganizationName": "Dr. Richard Graulau Rosario", @@ -2617,50 +2605,38 @@ "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/82804c88-f5e6-41d9-828c-75b2317bb97a", - "OrganizationName": "Lakes Area Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c90f4e27-2fca-4b5e-a032-03681b44c31c", + "OrganizationName": "Alliance Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/82804c88-f5e6-41d9-828c-75b2317bb97a", - "OrganizationName": "Lakes Area Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c90f4e27-2fca-4b5e-a032-03681b44c31c", + "OrganizationName": "Alliance Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c90f4e27-2fca-4b5e-a032-03681b44c31c", - "OrganizationName": "Alliance Rehabilitation", + "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/c90f4e27-2fca-4b5e-a032-03681b44c31c", - "OrganizationName": "Alliance Rehabilitation", + "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/35d90a79-d291-458f-a9ba-32d06b29ccbb", - "OrganizationName": "Heather Lin, M.D., A Medical Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/82804c88-f5e6-41d9-828c-75b2317bb97a", + "OrganizationName": "Lakes Area Health Center", "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/82804c88-f5e6-41d9-828c-75b2317bb97a", + "OrganizationName": "Lakes Area Health Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -2688,6 +2664,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/35d90a79-d291-458f-a9ba-32d06b29ccbb", + "OrganizationName": "Heather Lin, M.D., A Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f9ff07b3-29dc-4807-b008-581b82b7ae45", "OrganizationName": "Viking Health Systems", @@ -2713,14 +2701,14 @@ "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/83608064-7fef-4f8c-baf2-c078782ecb34", + "OrganizationName": "Simret Nanda, M.D.", "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/83608064-7fef-4f8c-baf2-c078782ecb34", + "OrganizationName": "Simret Nanda, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -2761,14 +2749,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83608064-7fef-4f8c-baf2-c078782ecb34", - "OrganizationName": "Simret Nanda, M.D.", + "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/83608064-7fef-4f8c-baf2-c078782ecb34", - "OrganizationName": "Simret Nanda, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", + "OrganizationName": "Reliable Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -2844,6 +2832,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c957110-76dd-4067-a3f0-053ecf0a2b8d", + "OrganizationName": "Karr Foot Kare, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c957110-76dd-4067-a3f0-053ecf0a2b8d", + "OrganizationName": "Karr Foot Kare, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6390c8de-6878-44e1-a246-ae526a063f02", "OrganizationName": "VOICE INSTITUTE OF BEVERLY HILLS", @@ -2880,18 +2880,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c957110-76dd-4067-a3f0-053ecf0a2b8d", - "OrganizationName": "Karr Foot Kare, PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c957110-76dd-4067-a3f0-053ecf0a2b8d", - "OrganizationName": "Karr Foot Kare, PA", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/05b9b70a-2d1e-4e4f-b952-429080dd9d30", "OrganizationName": "Michigan Medical Associates, P.C.", @@ -2977,38 +2965,38 @@ "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/098b29dd-1681-4345-9d51-4682a2a4cfc3", + "OrganizationName": "NORTH TEXAS MEDICAL SPECIALISTS", "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/098b29dd-1681-4345-9d51-4682a2a4cfc3", + "OrganizationName": "NORTH TEXAS MEDICAL SPECIALISTS", "NPIID": "", "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/098b29dd-1681-4345-9d51-4682a2a4cfc3", - "OrganizationName": "NORTH TEXAS MEDICAL SPECIALISTS", + "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/098b29dd-1681-4345-9d51-4682a2a4cfc3", - "OrganizationName": "NORTH TEXAS MEDICAL SPECIALISTS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", + "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, @@ -3037,98 +3025,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c43fdd16-b0d5-439a-b545-eb0d7351d8d7", - "OrganizationName": "Internal Medicine Consultant of NW Indiana", + "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/c43fdd16-b0d5-439a-b545-eb0d7351d8d7", - "OrganizationName": "Internal Medicine Consultant of NW Indiana", + "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/0072e502-8369-4539-a8d5-af0c7755ba33", - "OrganizationName": "Advanced Pain \u0026 Spine Management", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c43fdd16-b0d5-439a-b545-eb0d7351d8d7", + "OrganizationName": "Internal Medicine Consultant of NW Indiana", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0072e502-8369-4539-a8d5-af0c7755ba33", - "OrganizationName": "Advanced Pain \u0026 Spine Management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c43fdd16-b0d5-439a-b545-eb0d7351d8d7", + "OrganizationName": "Internal Medicine Consultant of NW Indiana", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34bccfb7-b281-415b-a8f0-0d5a622ff918", - "OrganizationName": "JC Fast Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a37426c5-0079-4407-9b6b-271db6d6b0c6", + "OrganizationName": "Wendy K. Y. Ng, MD Plastic Surgery and Hand Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34bccfb7-b281-415b-a8f0-0d5a622ff918", - "OrganizationName": "JC Fast Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a37426c5-0079-4407-9b6b-271db6d6b0c6", + "OrganizationName": "Wendy K. Y. Ng, MD Plastic Surgery and Hand Surgery", "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/833fb1c0-d37a-42be-bcc4-a6b5f786922f", + "OrganizationName": "VP in-house Primary health care services", "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/833fb1c0-d37a-42be-bcc4-a6b5f786922f", + "OrganizationName": "VP in-house Primary health care services", "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", + "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/a37426c5-0079-4407-9b6b-271db6d6b0c6", - "OrganizationName": "Wendy K. Y. Ng, MD Plastic Surgery and Hand Surgery", + "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/9fb0ba80-ade0-4390-bb0c-45214682255b", - "OrganizationName": "Sapient Health Services, PLLC", + "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/9fb0ba80-ade0-4390-bb0c-45214682255b", - "OrganizationName": "Sapient Health Services, PLLC", + "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/833fb1c0-d37a-42be-bcc4-a6b5f786922f", - "OrganizationName": "VP in-house Primary health care services", + "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/833fb1c0-d37a-42be-bcc4-a6b5f786922f", - "OrganizationName": "VP in-house Primary health care services", + "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/9fb0ba80-ade0-4390-bb0c-45214682255b", + "OrganizationName": "Sapient Health Services, PLLC", "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/9fb0ba80-ade0-4390-bb0c-45214682255b", + "OrganizationName": "Sapient Health Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3144,6 +3132,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/70f5f18a-4ede-4791-ab96-5e3690b40e51", + "OrganizationName": "Knew Mindset LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a19db5cd-1238-43ca-b0e6-231bc3fa7f87", "OrganizationName": "Colette D'Altilio DPM", @@ -3180,18 +3180,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/70f5f18a-4ede-4791-ab96-5e3690b40e51", - "OrganizationName": "Knew Mindset LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6dbc738e-879a-41cb-9a5b-72f1e8f2a298", "OrganizationName": "Preferred Provider Services", @@ -3216,30 +3204,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/13005280-4a9a-4434-b590-62a0e00713a1", - "OrganizationName": "The Boca Raton Center for Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/4135c4ed-9cb5-4d1e-8a44-459f577509eb", - "OrganizationName": "Pain GPS Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", "OrganizationName": "Danny Benmoshe M.D. Inc.", @@ -3253,26 +3217,26 @@ "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/13005280-4a9a-4434-b590-62a0e00713a1", + "OrganizationName": "The Boca Raton Center for 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/13005280-4a9a-4434-b590-62a0e00713a1", + "OrganizationName": "The Boca Raton Center for Internal Medicine", "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/4135c4ed-9cb5-4d1e-8a44-459f577509eb", + "OrganizationName": "Pain GPS Clinic", "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/4135c4ed-9cb5-4d1e-8a44-459f577509eb", + "OrganizationName": "Pain GPS Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -3312,6 +3276,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", + "OrganizationName": "Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fe10845a-906b-4174-b593-03ac1882cd50", "OrganizationName": "Little Lantern Clinic", @@ -3337,50 +3313,50 @@ "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": "" }, { - "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/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "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/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "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/3e2ec43d-4bfd-4646-adec-1c5d260096a6", + "OrganizationName": "SAMARA HOME DOCTOR SERVICES", "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/3e2ec43d-4bfd-4646-adec-1c5d260096a6", + "OrganizationName": "SAMARA HOME DOCTOR SERVICES", "NPIID": "", "OrganizationZipCode": "" }, @@ -3397,26 +3373,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e2ec43d-4bfd-4646-adec-1c5d260096a6", - "OrganizationName": "SAMARA HOME DOCTOR SERVICES", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3bdf6cf5-a033-41d2-b3e5-e12dac1a3f04", + "OrganizationName": "Family Physicians Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e2ec43d-4bfd-4646-adec-1c5d260096a6", - "OrganizationName": "SAMARA HOME DOCTOR SERVICES", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3bdf6cf5-a033-41d2-b3e5-e12dac1a3f04", + "OrganizationName": "Family Physicians Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3bdf6cf5-a033-41d2-b3e5-e12dac1a3f04", - "OrganizationName": "Family Physicians Associates", + "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/3bdf6cf5-a033-41d2-b3e5-e12dac1a3f04", - "OrganizationName": "Family Physicians Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4cd6b73-c2b2-4a26-af7a-8666a5f888b4", + "OrganizationName": "James Sayegh", "NPIID": "", "OrganizationZipCode": "" }, @@ -3433,14 +3409,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4cd6b73-c2b2-4a26-af7a-8666a5f888b4", - "OrganizationName": "James Sayegh", + "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/c4cd6b73-c2b2-4a26-af7a-8666a5f888b4", - "OrganizationName": "James Sayegh", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5872807e-08f4-4fcf-b13c-b0f720ca6a68", + "OrganizationName": "SUNLIFE PEDIATRIC NETWORK, INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -3481,14 +3457,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/230a0591-58ad-4575-91e4-913a56f089c8", + "OrganizationName": "Hillside Medical Group", "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/230a0591-58ad-4575-91e4-913a56f089c8", + "OrganizationName": "Hillside Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -3505,26 +3481,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/230a0591-58ad-4575-91e4-913a56f089c8", - "OrganizationName": "Hillside Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f9936be8-6ec9-4935-a89f-61f18de0925b", + "OrganizationName": "Shah Anuj MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/230a0591-58ad-4575-91e4-913a56f089c8", - "OrganizationName": "Hillside Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f9936be8-6ec9-4935-a89f-61f18de0925b", + "OrganizationName": "Shah Anuj MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f9936be8-6ec9-4935-a89f-61f18de0925b", - "OrganizationName": "Shah Anuj MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8ad9a5c9-8e35-4dde-a5b4-cf020bcb5f06", + "OrganizationName": "The Orthopaedic Spine Center, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f9936be8-6ec9-4935-a89f-61f18de0925b", - "OrganizationName": "Shah Anuj MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8ad9a5c9-8e35-4dde-a5b4-cf020bcb5f06", + "OrganizationName": "The Orthopaedic Spine Center, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/809ed84a-8190-44ed-a501-f7a5b6ef4339", + "OrganizationName": "TOOMARI SURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/809ed84a-8190-44ed-a501-f7a5b6ef4339", + "OrganizationName": "TOOMARI SURGERY", "NPIID": "", "OrganizationZipCode": "" }, @@ -3564,6 +3552,18 @@ "NPIID": "", "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", @@ -3601,14 +3601,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/809ed84a-8190-44ed-a501-f7a5b6ef4339", - "OrganizationName": "TOOMARI SURGERY", + "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/809ed84a-8190-44ed-a501-f7a5b6ef4339", - "OrganizationName": "TOOMARI SURGERY", + "URL": "https://api.practicefusion.com/fhir/r4/v1/406cb608-5d18-44e9-a3b7-f2a2b308d61a", + "OrganizationName": "Hobson Healthcare Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3625,14 +3625,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8ad9a5c9-8e35-4dde-a5b4-cf020bcb5f06", - "OrganizationName": "The Orthopaedic Spine Center, P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0f59ee3b-0c34-430f-b5c2-d4135e0490a2", + "OrganizationName": "Shaindel Parnes APN, PMHNP-BC Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8ad9a5c9-8e35-4dde-a5b4-cf020bcb5f06", - "OrganizationName": "The Orthopaedic Spine Center, P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0f59ee3b-0c34-430f-b5c2-d4135e0490a2", + "OrganizationName": "Shaindel Parnes APN, PMHNP-BC Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -3661,44 +3661,20 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0f59ee3b-0c34-430f-b5c2-d4135e0490a2", - "OrganizationName": "Shaindel Parnes APN, PMHNP-BC Practice", + "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/0f59ee3b-0c34-430f-b5c2-d4135e0490a2", - "OrganizationName": "Shaindel Parnes APN, PMHNP-BC Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", + "OrganizationName": "Ianua Health LLC", "NPIID": "", "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/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/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", - "OrganizationName": "Ravi Badlani MDSC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", + "OrganizationName": "Ravi Badlani MDSC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3708,18 +3684,6 @@ "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": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b31c226e-60bb-4afe-a4ee-db1d05eee899", "OrganizationName": "Taral Sharma, MD, PC", @@ -3745,14 +3709,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1c069c60-7633-47f6-a0bd-4b27afb77334", - "OrganizationName": "GoPrivateMD", + "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/1c069c60-7633-47f6-a0bd-4b27afb77334", - "OrganizationName": "GoPrivateMD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01ece804-65a8-4099-86ff-2257ed5be26b", + "OrganizationName": "Tyson Quy MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3769,14 +3733,14 @@ "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/1c069c60-7633-47f6-a0bd-4b27afb77334", + "OrganizationName": "GoPrivateMD", "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/1c069c60-7633-47f6-a0bd-4b27afb77334", + "OrganizationName": "GoPrivateMD", "NPIID": "", "OrganizationZipCode": "" }, @@ -3817,26 +3781,26 @@ "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/5b63ca40-cd78-439f-97f9-bd10de1fff44", + "OrganizationName": "Chaparral Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", - "OrganizationName": "Diane Cuff-Carney Practice", + "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/752c8b13-c90e-4cbf-9799-d866d6b7b68d", - "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "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/752c8b13-c90e-4cbf-9799-d866d6b7b68d", - "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", + "OrganizationName": "Diane Cuff-Carney Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -3853,14 +3817,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b63ca40-cd78-439f-97f9-bd10de1fff44", - "OrganizationName": "Chaparral Medical Group", + "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/5b63ca40-cd78-439f-97f9-bd10de1fff44", - "OrganizationName": "Chaparral Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", + "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/061ed4b6-45f3-4397-9d82-874efb7061bd", + "OrganizationName": "RAIQA MUNIS MD.PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3889,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/54ef6de9-2e00-4eaf-85c2-d6658e28cd36", + "OrganizationName": "Instic Health LLC", "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/54ef6de9-2e00-4eaf-85c2-d6658e28cd36", + "OrganizationName": "Instic Health LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3925,14 +3901,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/54ef6de9-2e00-4eaf-85c2-d6658e28cd36", - "OrganizationName": "Instic Health LLC", + "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/54ef6de9-2e00-4eaf-85c2-d6658e28cd36", - "OrganizationName": "Instic Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4dae27b3-511a-4531-b473-8515a4009cbd", + "OrganizationName": "Jimmy Liu MD, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -3961,50 +3937,50 @@ "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/136232be-382a-43fc-9fba-3dd5fb1e20d3", + "OrganizationName": "B\u0026W Healthcare Associates", "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/136232be-382a-43fc-9fba-3dd5fb1e20d3", + "OrganizationName": "B\u0026W Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/767bc8cb-1907-4b9f-9e7f-30a5dd2eaec4", - "OrganizationName": "KIM YOUNGRAE MEDICAL INC", + "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/767bc8cb-1907-4b9f-9e7f-30a5dd2eaec4", - "OrganizationName": "KIM YOUNGRAE MEDICAL INC", + "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/136232be-382a-43fc-9fba-3dd5fb1e20d3", - "OrganizationName": "B\u0026W Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/767bc8cb-1907-4b9f-9e7f-30a5dd2eaec4", + "OrganizationName": "KIM YOUNGRAE MEDICAL INC", "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/767bc8cb-1907-4b9f-9e7f-30a5dd2eaec4", + "OrganizationName": "KIM YOUNGRAE MEDICAL INC", "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/66e2c33f-4eae-42f3-a676-0148cccbd374", + "OrganizationName": "SATNAM MEDICAL", "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/66e2c33f-4eae-42f3-a676-0148cccbd374", + "OrganizationName": "SATNAM MEDICAL", "NPIID": "", "OrganizationZipCode": "" }, @@ -4045,14 +4021,26 @@ "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/d7e766db-f055-4d17-993b-82db5e18edd8", + "OrganizationName": "Clear Vision Medical Center , Inc", "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/d7e766db-f055-4d17-993b-82db5e18edd8", + "OrganizationName": "Clear Vision Medical Center , Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/e81d67dc-e415-4444-b1c9-88e8ff74458a", + "OrganizationName": "PRIMARY MEDICINE, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4069,50 +4057,50 @@ "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/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", "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/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", "NPIID": "", "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/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", "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/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", "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/4ced0ca8-5298-4095-9ef2-7807f134a1b8", + "OrganizationName": "SAFE SUBSTANCE ABUSE COALITION", "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/4ced0ca8-5298-4095-9ef2-7807f134a1b8", + "OrganizationName": "SAFE SUBSTANCE ABUSE COALITION", "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": "" }, @@ -4140,30 +4128,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", - "OrganizationName": "Primary Care For U Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/4ced0ca8-5298-4095-9ef2-7807f134a1b8", - "OrganizationName": "SAFE SUBSTANCE ABUSE COALITION", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", "OrganizationName": "Radulovic family practice and weight loss center", @@ -4236,6 +4200,30 @@ "NPIID": "", "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/a74fa912-fdb2-4073-b3c2-736f65b7c376", "OrganizationName": "Kirtida N. Ringwala MD", @@ -4285,26 +4273,26 @@ "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/1f2d7b30-47cd-4ea9-a521-35c27e405a1f", + "OrganizationName": "C GUROL ERBAY MD PA", "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/1f2d7b30-47cd-4ea9-a521-35c27e405a1f", + "OrganizationName": "C GUROL ERBAY MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b112cac8-1076-4f6a-b0c8-a308489a11e5", - "OrganizationName": "Ponya Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cf17b2c-c3c7-4e1e-bb2e-cf7f4f969433", + "OrganizationName": "Western State Pain Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b112cac8-1076-4f6a-b0c8-a308489a11e5", - "OrganizationName": "Ponya Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cf17b2c-c3c7-4e1e-bb2e-cf7f4f969433", + "OrganizationName": "Western State Pain Institute", "NPIID": "", "OrganizationZipCode": "" }, @@ -4321,38 +4309,26 @@ "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/2ca01eec-89bb-44a5-b0d2-4fcc048d606f", + "OrganizationName": "B. Bryant Parson, NP Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1f2d7b30-47cd-4ea9-a521-35c27e405a1f", - "OrganizationName": "C GUROL ERBAY MD PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2cf17b2c-c3c7-4e1e-bb2e-cf7f4f969433", - "OrganizationName": "Western State Pain Institute", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2cf17b2c-c3c7-4e1e-bb2e-cf7f4f969433", - "OrganizationName": "Western State Pain Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ca01eec-89bb-44a5-b0d2-4fcc048d606f", + "OrganizationName": "B. Bryant Parson, NP Practice", "NPIID": "", "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/fe879af9-4b64-4d52-8d94-6533eb12d642", + "OrganizationName": "Daniel Sipple Practice", "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/fe879af9-4b64-4d52-8d94-6533eb12d642", + "OrganizationName": "Daniel Sipple Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -4404,18 +4380,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/fe879af9-4b64-4d52-8d94-6533eb12d642", - "OrganizationName": "Daniel Sipple Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d6ae451a-c3be-43a2-a15e-8bad8e153ec7", "OrganizationName": "NP Care Inc", @@ -4452,18 +4416,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/41f03d00-c0b0-4c39-b068-9968bd31cc96", "OrganizationName": "PRIMARY CARE SOLUTIONS JACKSONVILLE LLC dba Jax Housecalls", @@ -4489,26 +4441,26 @@ "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/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", "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/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f45962cf-fd1a-42be-9311-30464ce38fda", - "OrganizationName": "Barbara Srur M.D., Neuropsych Associates", + "OrganizationName": "Barbara P Srur M.D. LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/f45962cf-fd1a-42be-9311-30464ce38fda", - "OrganizationName": "Barbara Srur M.D., Neuropsych Associates", + "OrganizationName": "Barbara P Srur M.D. LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4524,6 +4476,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/c5d86978-c772-4329-9c7e-0952b471fa98", + "OrganizationName": "Kidney \u0026 Hypertension Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/418bd040-1e41-4e26-af85-cab794fae726", "OrganizationName": "Pediatric Heart Clinic of McAllen", @@ -4549,62 +4513,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/120edcea-fb92-4e08-ade7-0e771417d3c0", - "OrganizationName": "Cendant Health Center", + "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/120edcea-fb92-4e08-ade7-0e771417d3c0", - "OrganizationName": "Cendant Health Center", + "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/120edcea-fb92-4e08-ade7-0e771417d3c0", + "OrganizationName": "Cendant Health Center", "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/120edcea-fb92-4e08-ade7-0e771417d3c0", + "OrganizationName": "Cendant Health Center", "NPIID": "", "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/5966c630-89ad-45bf-9a23-217fdf62562a", + "OrganizationName": "Liset Avalos Enriquez Practice", "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/5966c630-89ad-45bf-9a23-217fdf62562a", + "OrganizationName": "Liset Avalos Enriquez Practice", "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/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", + "OrganizationName": "PrimeCare Medical", "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/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/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", + "OrganizationName": "Chad Brock- Shrink Savannah", "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/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", + "OrganizationName": "Chad Brock- Shrink Savannah", "NPIID": "", "OrganizationZipCode": "" }, @@ -4668,18 +4632,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/63118c3c-a8af-4e20-88a0-3327a8be78ff", "OrganizationName": "The Center of Balance Clinic", @@ -4716,6 +4668,18 @@ "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/cc123801-6bbd-4235-8eae-26b396bd9c28", "OrganizationName": "Shelley Ham MD", @@ -4740,6 +4704,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/71d1b318-ca9e-4814-b001-1c124a226798", + "OrganizationName": "Neyma Reyes Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/71d1b318-ca9e-4814-b001-1c124a226798", + "OrganizationName": "Neyma Reyes Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", "OrganizationName": "Harmony Medical Clinic", @@ -4776,18 +4752,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/71d1b318-ca9e-4814-b001-1c124a226798", - "OrganizationName": "Neyma Reyes Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/71d1b318-ca9e-4814-b001-1c124a226798", - "OrganizationName": "Neyma Reyes Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e06f8267-6509-42ba-9ec2-8a7601c09d75", "OrganizationName": "OC ID Specialist, Inc.", @@ -4813,26 +4777,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99f24268-0b08-4d34-8626-00cad588a88e", - "OrganizationName": "Taylor Family Healthcare", + "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/99f24268-0b08-4d34-8626-00cad588a88e", - "OrganizationName": "Taylor Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", + "OrganizationName": "MZF MEDICAL SERVICES, P.C.", "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": "" }, @@ -4848,6 +4812,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/2cc99488-e8b8-4628-9dad-d9fbd2154048", + "OrganizationName": "AAMDInc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", @@ -4885,38 +4861,38 @@ "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/b102527e-8759-4403-9d7c-daa0450f3542", + "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", "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/b102527e-8759-4403-9d7c-daa0450f3542", + "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", "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/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", + "OrganizationName": "North Jersey Interventional Pain Center", "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/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", + "OrganizationName": "North Jersey Interventional Pain Center", "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/19c6e0dc-120e-46cb-a479-ca613557cfe8", + "OrganizationName": "Buckeye Health and Research", "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/19c6e0dc-120e-46cb-a479-ca613557cfe8", + "OrganizationName": "Buckeye Health and Research", "NPIID": "", "OrganizationZipCode": "" }, @@ -4945,14 +4921,14 @@ "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/c88ff882-e8d2-49bd-bded-c22aec3faafc", + "OrganizationName": "ALBERT D CHAN MD INC", "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/c88ff882-e8d2-49bd-bded-c22aec3faafc", + "OrganizationName": "ALBERT D CHAN MD INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4968,30 +4944,6 @@ "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/1c89b058-362e-4853-89b2-74a3cd058a23", "OrganizationName": "Altru Acute Neurosurgery", @@ -5004,18 +4956,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/d5b222fd-cf67-4be6-aabd-50716c05b9cc", - "OrganizationName": "Horizon View Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ae7001a4-52eb-43ae-9b82-271403457810", "OrganizationName": "Wah Psychiatry Clinic PLLC Practice", @@ -5053,8 +4993,32 @@ "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/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/d5b222fd-cf67-4be6-aabd-50716c05b9cc", + "OrganizationName": "Horizon View Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/11c7afc6-b4d8-4748-a14f-a00acd42cf9b", + "OrganizationName": "Maniya Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -5088,18 +5052,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/37b9feda-6909-4cb1-99d5-9860ecb0ee2a", "OrganizationName": "Richmond Family Clinic P.C.", @@ -5125,62 +5077,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b880ac0b-a9a6-4444-8805-5ca0779dacba", - "OrganizationName": "Wellbein Orthopedic Xpress", + "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/b880ac0b-a9a6-4444-8805-5ca0779dacba", - "OrganizationName": "Wellbein Orthopedic Xpress", + "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/b42eb0eb-6682-4f2c-aa56-63b88a5132ac", - "OrganizationName": "Luxe Surgery Center of Encino", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b880ac0b-a9a6-4444-8805-5ca0779dacba", + "OrganizationName": "Wellbein Orthopedic Xpress", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b42eb0eb-6682-4f2c-aa56-63b88a5132ac", - "OrganizationName": "Luxe Surgery Center of Encino", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b880ac0b-a9a6-4444-8805-5ca0779dacba", + "OrganizationName": "Wellbein Orthopedic Xpress", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f82dadd-4eaa-48b3-b8dd-324df6b3b173", - "OrganizationName": "Family Medicine and Geriatric Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b42eb0eb-6682-4f2c-aa56-63b88a5132ac", + "OrganizationName": "Luxe Surgery Center of Encino", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f82dadd-4eaa-48b3-b8dd-324df6b3b173", - "OrganizationName": "Family Medicine and Geriatric Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b42eb0eb-6682-4f2c-aa56-63b88a5132ac", + "OrganizationName": "Luxe Surgery Center of Encino", "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/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", + "OrganizationName": "Wellspring", "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/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", + "OrganizationName": "Wellspring", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", - "OrganizationName": "Wellspring", + "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/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", - "OrganizationName": "Wellspring", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3f5aace2-d3e8-4013-9c02-a16e7f733d74", + "OrganizationName": "Avalin Health Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, @@ -5197,14 +5149,14 @@ "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/6f82dadd-4eaa-48b3-b8dd-324df6b3b173", + "OrganizationName": "Family Medicine and Geriatric Clinic", "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/6f82dadd-4eaa-48b3-b8dd-324df6b3b173", + "OrganizationName": "Family Medicine and Geriatric Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -5220,18 +5172,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/3f5aace2-d3e8-4013-9c02-a16e7f733d74", - "OrganizationName": "Avalin Health Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fbd7d025-bf77-4fc7-924f-e2092445ecdc", "OrganizationName": "Mind Over Matter Psychiatry", @@ -5245,38 +5185,38 @@ "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/9137a705-8d05-406a-8391-76ee819b2a5d", + "OrganizationName": "Nowobilska Medical Practice LTD", "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/9137a705-8d05-406a-8391-76ee819b2a5d", + "OrganizationName": "Nowobilska Medical Practice LTD", "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/54728d1b-4e46-47e2-b9fa-e6f73896da83", + "OrganizationName": "Brain and Body Health Institute PA", "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/54728d1b-4e46-47e2-b9fa-e6f73896da83", + "OrganizationName": "Brain and Body Health Institute PA", "NPIID": "", "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/49b9a16b-4a7f-4425-aaad-18096cff2bf9", + "OrganizationName": "Amelia Respiratory and Sleep Medicine LLC", "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/49b9a16b-4a7f-4425-aaad-18096cff2bf9", + "OrganizationName": "Amelia Respiratory and Sleep Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -5293,26 +5233,26 @@ "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/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", + "OrganizationName": "Francis Camillo MD 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/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", + "OrganizationName": "Francis Camillo MD PLLC", "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/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "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/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -5353,38 +5293,38 @@ "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/7acea415-5338-44d4-86ce-739bc2c23b91", + "OrganizationName": "Houston Renal Group", "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/7acea415-5338-44d4-86ce-739bc2c23b91", + "OrganizationName": "Houston Renal Group", "NPIID": "", "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/86943b6d-bdf0-4a60-9256-88a3f0bc492a", + "OrganizationName": "Brazos Primary Care Associates", "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/86943b6d-bdf0-4a60-9256-88a3f0bc492a", + "OrganizationName": "Brazos Primary Care Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7acea415-5338-44d4-86ce-739bc2c23b91", - "OrganizationName": "Houston Renal Group", + "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/7acea415-5338-44d4-86ce-739bc2c23b91", - "OrganizationName": "Houston Renal Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7de0b9c3-0ba4-42e7-a278-2027387274fd", + "OrganizationName": "Debdeep Nath PNP", "NPIID": "", "OrganizationZipCode": "" }, @@ -5412,18 +5352,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", - "OrganizationName": "Hassan Alsabbak MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d1dafc9e-be64-45b5-b202-d7ba4c23bb3e", "OrganizationName": "Central Family Care \u0026 Weight Loss Clinic", @@ -5449,14 +5377,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": "" }, @@ -5497,26 +5425,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/160cf964-e74c-4b95-b317-b20415321b5d", - "OrganizationName": "GAOD Medical Services", + "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/160cf964-e74c-4b95-b317-b20415321b5d", - "OrganizationName": "GAOD Medical Services", + "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/974c09dd-5e19-4830-bab3-8d6cf3d38622", - "OrganizationName": "ANGEL ERNESTO RICO MD PA II", + "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/974c09dd-5e19-4830-bab3-8d6cf3d38622", - "OrganizationName": "ANGEL ERNESTO RICO MD PA II", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", + "OrganizationName": "Integrity Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -5544,18 +5472,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/ec1c3871-47ed-4475-847a-c5b3f31767a5", "OrganizationName": "Kenneth Henschel, MD LLC", @@ -5581,26 +5497,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", - "OrganizationName": "Bayfront Medical Associates LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/160cf964-e74c-4b95-b317-b20415321b5d", + "OrganizationName": "GAOD Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", - "OrganizationName": "Bayfront Medical Associates LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/160cf964-e74c-4b95-b317-b20415321b5d", + "OrganizationName": "GAOD Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7bfd4f39-dae9-4eba-baa8-91ec4c762f8d", - "OrganizationName": "Simone Van-Horne, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/974c09dd-5e19-4830-bab3-8d6cf3d38622", + "OrganizationName": "ANGEL ERNESTO RICO MD PA II", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7bfd4f39-dae9-4eba-baa8-91ec4c762f8d", - "OrganizationName": "Simone Van-Horne, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/974c09dd-5e19-4830-bab3-8d6cf3d38622", + "OrganizationName": "ANGEL ERNESTO RICO MD PA II", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/722915b8-08b9-4497-b27b-b9a9094eb8d3", + "OrganizationName": "Twin Tree OBGYN and Integrated Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/722915b8-08b9-4497-b27b-b9a9094eb8d3", + "OrganizationName": "Twin Tree OBGYN and Integrated Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -5617,14 +5545,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/722915b8-08b9-4497-b27b-b9a9094eb8d3", - "OrganizationName": "Twin Tree OBGYN and Integrated Health", + "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/722915b8-08b9-4497-b27b-b9a9094eb8d3", - "OrganizationName": "Twin Tree OBGYN and Integrated Health", + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7bfd4f39-dae9-4eba-baa8-91ec4c762f8d", + "OrganizationName": "Simone Van-Horne, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -5665,26 +5605,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/10ae176d-aeba-47aa-8ae5-dc41e7ccff33", - "OrganizationName": "Your Heart Doc, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/db17f9a9-297a-4cce-9bf4-3538fb89a214", + "OrganizationName": "Smart Prime Care Provider, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/10ae176d-aeba-47aa-8ae5-dc41e7ccff33", - "OrganizationName": "Your Heart Doc, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/db17f9a9-297a-4cce-9bf4-3538fb89a214", - "OrganizationName": "Smart Prime Care Provider, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/db17f9a9-297a-4cce-9bf4-3538fb89a214", - "OrganizationName": "Smart Prime Care Provider, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/db17f9a9-297a-4cce-9bf4-3538fb89a214", + "OrganizationName": "Smart Prime Care Provider, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -5713,14 +5641,14 @@ "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/10ae176d-aeba-47aa-8ae5-dc41e7ccff33", + "OrganizationName": "Your Heart Doc, LLC", "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/10ae176d-aeba-47aa-8ae5-dc41e7ccff33", + "OrganizationName": "Your Heart Doc, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -5749,26 +5677,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0232c5d4-c409-4c0c-92e6-424e11f6e9d4", - "OrganizationName": "Feet First Institute of Beavercreek", + "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/0232c5d4-c409-4c0c-92e6-424e11f6e9d4", - "OrganizationName": "Feet First Institute of Beavercreek", + "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", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0232c5d4-c409-4c0c-92e6-424e11f6e9d4", + "OrganizationName": "Feet First Institute of Beavercreek", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", - "OrganizationName": "Calata Medical Group, INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0232c5d4-c409-4c0c-92e6-424e11f6e9d4", + "OrganizationName": "Feet First Institute of Beavercreek", "NPIID": "", "OrganizationZipCode": "" }, @@ -5785,14 +5713,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", - "OrganizationName": "Gerald Maguire Practice", + "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/938a8e9d-4670-49bc-9075-4c60e92954b3", - "OrganizationName": "Gerald Maguire Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", + "OrganizationName": "Calata Medical Group, INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -5809,14 +5737,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0be0062e-eb15-4193-ba1b-f694c33bbc5d", - "OrganizationName": "Medard Sison NP, A Professional Nursing Corporation", + "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/0be0062e-eb15-4193-ba1b-f694c33bbc5d", - "OrganizationName": "Medard Sison NP, A Professional Nursing Corporation", + "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/95430825-8d63-4f4b-ae69-9fb881ed71de", + "OrganizationName": "Integrative Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/95430825-8d63-4f4b-ae69-9fb881ed71de", + "OrganizationName": "Integrative Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -5833,26 +5773,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/167ac2b8-6e36-470b-94a1-e0629d309ef0", - "OrganizationName": "La Plata Medical Examiners", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0be0062e-eb15-4193-ba1b-f694c33bbc5d", + "OrganizationName": "Medard Sison NP, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/167ac2b8-6e36-470b-94a1-e0629d309ef0", - "OrganizationName": "La Plata Medical Examiners", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0be0062e-eb15-4193-ba1b-f694c33bbc5d", + "OrganizationName": "Medard Sison NP, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/95430825-8d63-4f4b-ae69-9fb881ed71de", - "OrganizationName": "Integrative Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/167ac2b8-6e36-470b-94a1-e0629d309ef0", + "OrganizationName": "La Plata Medical Examiners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/95430825-8d63-4f4b-ae69-9fb881ed71de", - "OrganizationName": "Integrative Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/167ac2b8-6e36-470b-94a1-e0629d309ef0", + "OrganizationName": "La Plata Medical Examiners", "NPIID": "", "OrganizationZipCode": "" }, @@ -5869,50 +5809,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8785b12a-99e4-402e-a98e-1b6e3371530d", - "OrganizationName": "Express Clinic, LLC", + "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/8785b12a-99e4-402e-a98e-1b6e3371530d", - "OrganizationName": "Express Clinic, LLC", + "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/a30c1cec-c3b0-465a-877d-b3088e12395a", - "OrganizationName": "MedPsych Memphis", + "URL": "https://api.patientfusion.com/fhir/r4/v1/02919cca-c7c0-4110-8f1b-a2cde380ae32", + "OrganizationName": "NEFROLOGIA CSP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a30c1cec-c3b0-465a-877d-b3088e12395a", - "OrganizationName": "MedPsych Memphis", + "URL": "https://api.practicefusion.com/fhir/r4/v1/02919cca-c7c0-4110-8f1b-a2cde380ae32", + "OrganizationName": "NEFROLOGIA CSP", "NPIID": "", "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/8785b12a-99e4-402e-a98e-1b6e3371530d", + "OrganizationName": "Express Clinic, LLC", "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/8785b12a-99e4-402e-a98e-1b6e3371530d", + "OrganizationName": "Express Clinic, LLC", "NPIID": "", "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/a30c1cec-c3b0-465a-877d-b3088e12395a", + "OrganizationName": "MedPsych Memphis", "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/a30c1cec-c3b0-465a-877d-b3088e12395a", + "OrganizationName": "MedPsych Memphis", "NPIID": "", "OrganizationZipCode": "" }, @@ -5929,14 +5869,14 @@ "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/2845d2ed-c77c-42a0-9806-d6700ca76c07", + "OrganizationName": "Curify Urgent Care", "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/2845d2ed-c77c-42a0-9806-d6700ca76c07", + "OrganizationName": "Curify Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -5953,26 +5893,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/02919cca-c7c0-4110-8f1b-a2cde380ae32", - "OrganizationName": "NEFROLOGIA CSP", + "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/02919cca-c7c0-4110-8f1b-a2cde380ae32", - "OrganizationName": "NEFROLOGIA CSP", + "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/52d8a017-6b8d-4011-a010-17bb48e48ea2", + "OrganizationName": "Riverview Psychiatric Medicine, PC", "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/52d8a017-6b8d-4011-a010-17bb48e48ea2", + "OrganizationName": "Riverview Psychiatric Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6000,30 +5940,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/c6037ea4-6402-4fb3-a314-62c62babff93", "OrganizationName": "Health Styles Medical Care PC", @@ -6061,14 +5977,26 @@ "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/dd599f7c-e502-408d-902a-e52ce0978fb8", + "OrganizationName": "Radiant", "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/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": "" }, @@ -6084,6 +6012,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/679662f1-9b45-4400-b720-307cc75cb9c2", + "OrganizationName": "PEDRO P CARBALLO MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a7c48115-833b-47a9-90d6-da2ee71969f4", "OrganizationName": "New Sunrise Mental Health", @@ -6096,6 +6036,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d87d09b-0e87-4653-86fb-e154bd0fad60", + "OrganizationName": "Willis Gaffney MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d87d09b-0e87-4653-86fb-e154bd0fad60", + "OrganizationName": "Willis Gaffney MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", "OrganizationName": "Maspóns Pediatric Gastro", @@ -6121,26 +6073,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1d87d09b-0e87-4653-86fb-e154bd0fad60", - "OrganizationName": "Willis Gaffney MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/196ee1d6-f904-4af7-9c10-8a7db35d4125", + "OrganizationName": "Women's Care Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1d87d09b-0e87-4653-86fb-e154bd0fad60", - "OrganizationName": "Willis Gaffney MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/196ee1d6-f904-4af7-9c10-8a7db35d4125", + "OrganizationName": "Women's Care Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/196ee1d6-f904-4af7-9c10-8a7db35d4125", - "OrganizationName": "Women's Care Associates, P.C.", + "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/196ee1d6-f904-4af7-9c10-8a7db35d4125", - "OrganizationName": "Women's Care Associates, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", + "OrganizationName": "Lisa Swansen FNP", "NPIID": "", "OrganizationZipCode": "" }, @@ -6158,25 +6110,13 @@ }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d2351dd9-42bf-4619-a76b-9700e423b917", - "OrganizationName": "dr. julius boateng", + "OrganizationName": "Dr. Julius Boateng", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/d2351dd9-42bf-4619-a76b-9700e423b917", - "OrganizationName": "dr. julius boateng", - "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", + "OrganizationName": "Dr. Julius Boateng", "NPIID": "", "OrganizationZipCode": "" }, @@ -6192,18 +6132,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/27fd1f55-3ec3-4212-ae6a-655bc58532da", - "OrganizationName": "Meeting House Family Counsing", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", @@ -6229,14 +6157,14 @@ "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/27fd1f55-3ec3-4212-ae6a-655bc58532da", + "OrganizationName": "Meeting House Family Counsing", "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/27fd1f55-3ec3-4212-ae6a-655bc58532da", + "OrganizationName": "Meeting House Family Counsing", "NPIID": "", "OrganizationZipCode": "" }, @@ -6253,8 +6181,20 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/436e724a-01a0-4a85-958c-8a2a53c8ef50", - "OrganizationName": "Payman Vahedifar,M.D.", + "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": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/436e724a-01a0-4a85-958c-8a2a53c8ef50", + "OrganizationName": "Payman Vahedifar,M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -6313,26 +6253,26 @@ "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/12cee67a-804a-460f-80cb-ea4a82378cfe", - "OrganizationName": "CHI Lifestyle Medical Center, LLC", + "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/12cee67a-804a-460f-80cb-ea4a82378cfe", - "OrganizationName": "CHI Lifestyle Medical Center, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4e14306-492d-452b-a42d-3fcc024711dc", + "OrganizationName": "ENRIQUE A ROBLES MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -6421,74 +6361,62 @@ "OrganizationZipCode": "" }, { - "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/bff85699-dab0-4396-9d2a-c40006c7f6bc", - "OrganizationName": "Healing Touch C \u0026 C,Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e37c8a0c-c3b9-4689-b114-71c7402b1526", - "OrganizationName": "Good Health Family Clinic", + "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/e37c8a0c-c3b9-4689-b114-71c7402b1526", - "OrganizationName": "Good Health Family Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9dc0825a-125f-459d-96a0-16acc144cc9c", + "OrganizationName": "Downtown Medical Clinic, LLC", "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/e7ee7652-088d-4493-aee1-7b122687ba8d", + "OrganizationName": "Hartland Medicine PLLC", "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/e7ee7652-088d-4493-aee1-7b122687ba8d", + "OrganizationName": "Hartland Medicine PLLC", "NPIID": "", "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/bff85699-dab0-4396-9d2a-c40006c7f6bc", + "OrganizationName": "Healing Touch C \u0026 C,Inc", "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/bff85699-dab0-4396-9d2a-c40006c7f6bc", + "OrganizationName": "Healing Touch C \u0026 C,Inc", "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/e37c8a0c-c3b9-4689-b114-71c7402b1526", + "OrganizationName": "Good Health Family Clinic", "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/e37c8a0c-c3b9-4689-b114-71c7402b1526", + "OrganizationName": "Good Health Family Clinic", "NPIID": "", "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/ee2fb683-7350-4187-8f0e-24b6a6a6d1e0", + "OrganizationName": "Prairie State Rehab", "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/ee2fb683-7350-4187-8f0e-24b6a6a6d1e0", + "OrganizationName": "Prairie State Rehab", "NPIID": "", "OrganizationZipCode": "" }, @@ -6517,38 +6445,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/615a9b98-54ca-4587-9462-4b66e2ac5d2a", - "OrganizationName": "Denise Rivera-Lugo Practice", + "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/615a9b98-54ca-4587-9462-4b66e2ac5d2a", - "OrganizationName": "Denise Rivera-Lugo Practice", + "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/300777b9-863b-49da-bbe8-0cd014bf49d6", - "OrganizationName": "Jessica Rosa Rodriguez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/615a9b98-54ca-4587-9462-4b66e2ac5d2a", + "OrganizationName": "Denise Rivera-Lugo Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/300777b9-863b-49da-bbe8-0cd014bf49d6", - "OrganizationName": "Jessica Rosa Rodriguez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/615a9b98-54ca-4587-9462-4b66e2ac5d2a", + "OrganizationName": "Denise Rivera-Lugo Practice", "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/300777b9-863b-49da-bbe8-0cd014bf49d6", + "OrganizationName": "Jessica Rosa Rodriguez", "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/300777b9-863b-49da-bbe8-0cd014bf49d6", + "OrganizationName": "Jessica Rosa Rodriguez", "NPIID": "", "OrganizationZipCode": "" }, @@ -6576,18 +6504,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/6ab865a4-c675-4668-8810-bd21847bacf7", - "OrganizationName": "VQS Access Health LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", "OrganizationName": "Salsberry Health, PLLC", @@ -6601,14 +6517,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a64d8554-9507-405f-8d10-62c22ca60024", - "OrganizationName": "Central Florida Healthcare Group, LLC.", + "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/a64d8554-9507-405f-8d10-62c22ca60024", - "OrganizationName": "Central Florida Healthcare Group, LLC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", + "OrganizationName": "Faith Healthcare and Healing, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6625,26 +6541,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3fe616ef-7c4a-4419-a015-8c4c5d790aec", - "OrganizationName": "Rita Laracuente MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a64d8554-9507-405f-8d10-62c22ca60024", + "OrganizationName": "Central Florida Healthcare Group, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3fe616ef-7c4a-4419-a015-8c4c5d790aec", - "OrganizationName": "Rita Laracuente MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a64d8554-9507-405f-8d10-62c22ca60024", + "OrganizationName": "Central Florida Healthcare Group, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/faff7780-76c7-41f5-8575-61a37265bd8d", - "OrganizationName": "Milestone Psychotherapy, LCSW, P.C.", + "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/faff7780-76c7-41f5-8575-61a37265bd8d", - "OrganizationName": "Milestone Psychotherapy, LCSW, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", + "OrganizationName": "VQS Access Health LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6661,86 +6577,86 @@ "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/2d5dc4e4-4351-4775-82ba-d3afb61bc91d", + "OrganizationName": "iHeal Health and Wellness Center", "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/2d5dc4e4-4351-4775-82ba-d3afb61bc91d", + "OrganizationName": "iHeal Health and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d5dc4e4-4351-4775-82ba-d3afb61bc91d", - "OrganizationName": "iHeal Health and Wellness Center", + "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/2d5dc4e4-4351-4775-82ba-d3afb61bc91d", - "OrganizationName": "iHeal Health and Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e6ac7eb-4623-470e-9378-90bf00ca358a", + "OrganizationName": "YEP Clinic and Lasting Impressions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f50bfa9c-8fc2-4adb-99a7-4475a22e773d", - "OrganizationName": "Jennifer Zemola Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/faff7780-76c7-41f5-8575-61a37265bd8d", + "OrganizationName": "Milestone Psychotherapy, LCSW, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f50bfa9c-8fc2-4adb-99a7-4475a22e773d", - "OrganizationName": "Jennifer Zemola Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/faff7780-76c7-41f5-8575-61a37265bd8d", + "OrganizationName": "Milestone Psychotherapy, LCSW, P.C.", "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/f50bfa9c-8fc2-4adb-99a7-4475a22e773d", + "OrganizationName": "Jennifer Zemola Practice", "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/f50bfa9c-8fc2-4adb-99a7-4475a22e773d", + "OrganizationName": "Jennifer Zemola Practice", "NPIID": "", "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/3fe616ef-7c4a-4419-a015-8c4c5d790aec", + "OrganizationName": "Rita Laracuente MD PA", "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/3fe616ef-7c4a-4419-a015-8c4c5d790aec", + "OrganizationName": "Rita Laracuente MD PA", "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/48e77ce7-90ea-4e08-be12-0b7ef2c64701", + "OrganizationName": "Maria Rojas Practice", "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/48e77ce7-90ea-4e08-be12-0b7ef2c64701", + "OrganizationName": "Maria Rojas Practice", "NPIID": "", "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/34eeee7b-82f2-4f4c-bfc8-1a9095e53f64", + "OrganizationName": "NouVo Med", "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/34eeee7b-82f2-4f4c-bfc8-1a9095e53f64", + "OrganizationName": "NouVo Med", "NPIID": "", "OrganizationZipCode": "" }, @@ -6757,14 +6673,26 @@ "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": "" + }, + { + "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/7d543888-6a86-4252-9788-ba38694eabeb", + "OrganizationName": "Beacom Family Health Connection", "NPIID": "", "OrganizationZipCode": "" }, @@ -6805,50 +6733,50 @@ "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/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "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/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "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/904c06d7-1406-4d01-a805-6d2b9ba6bf33", + "OrganizationName": "Bertha Cabrera MD", "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/904c06d7-1406-4d01-a805-6d2b9ba6bf33", + "OrganizationName": "Bertha Cabrera MD", "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/904c06d7-1406-4d01-a805-6d2b9ba6bf33", - "OrganizationName": "Bertha Cabrera MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Oficina Medicina de Familia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/904c06d7-1406-4d01-a805-6d2b9ba6bf33", - "OrganizationName": "Bertha Cabrera MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Oficina Medicina de Familia", "NPIID": "", "OrganizationZipCode": "" }, @@ -6877,134 +6805,134 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/385759d8-ab77-4f84-a86c-5290a3a418b3", - "OrganizationName": "Center for Nephrology \u0026 Hypertension", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dc453f77-094e-4eb7-87d7-eb6858a26351", + "OrganizationName": "Endocrinology \u0026 Osteoporosis Centers of Texas", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/385759d8-ab77-4f84-a86c-5290a3a418b3", - "OrganizationName": "Center for Nephrology \u0026 Hypertension", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dc453f77-094e-4eb7-87d7-eb6858a26351", + "OrganizationName": "Endocrinology \u0026 Osteoporosis Centers of Texas", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ed5d5e6-3f74-4071-8e0b-a19e65364ab4", - "OrganizationName": "Mohit Durve Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/adcf3a4e-9d70-49ac-b42e-41260b1d63e2", + "OrganizationName": "HERMANOS HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ed5d5e6-3f74-4071-8e0b-a19e65364ab4", - "OrganizationName": "Mohit Durve Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/adcf3a4e-9d70-49ac-b42e-41260b1d63e2", + "OrganizationName": "HERMANOS HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dc453f77-094e-4eb7-87d7-eb6858a26351", - "OrganizationName": "Endocrinology \u0026 Osteoporosis Centers of Texas", + "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/dc453f77-094e-4eb7-87d7-eb6858a26351", - "OrganizationName": "Endocrinology \u0026 Osteoporosis Centers of Texas", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", + "OrganizationName": "Lynx Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/adcf3a4e-9d70-49ac-b42e-41260b1d63e2", - "OrganizationName": "HERMANOS HealthCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ed5d5e6-3f74-4071-8e0b-a19e65364ab4", + "OrganizationName": "Mohit Durve Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/adcf3a4e-9d70-49ac-b42e-41260b1d63e2", - "OrganizationName": "HERMANOS HealthCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ed5d5e6-3f74-4071-8e0b-a19e65364ab4", + "OrganizationName": "Mohit Durve Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee8f5a35-f2ad-4df4-9b3c-79c64ef91bbf", - "OrganizationName": "ACES HOME HEALTH", + "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/ee8f5a35-f2ad-4df4-9b3c-79c64ef91bbf", - "OrganizationName": "ACES HOME HEALTH", + "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", + "URL": "https://api.patientfusion.com/fhir/r4/v1/052a9e82-db02-479d-aaae-f1623dc31770", + "OrganizationName": "Baechtel Creek Medical Clinic", "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/052a9e82-db02-479d-aaae-f1623dc31770", + "OrganizationName": "Baechtel Creek Medical Clinic", "NPIID": "", "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/64005c98-b2cd-41ae-86cf-6b16f82cbeb3", + "OrganizationName": "EMS PHYSICAL THERAPY", "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/64005c98-b2cd-41ae-86cf-6b16f82cbeb3", + "OrganizationName": "EMS PHYSICAL THERAPY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/052a9e82-db02-479d-aaae-f1623dc31770", - "OrganizationName": "Baechtel Creek Medical Clinic", + "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/052a9e82-db02-479d-aaae-f1623dc31770", - "OrganizationName": "Baechtel Creek Medical Clinic", + "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/802ce909-cf9e-4aa1-8139-998856c72308", - "OrganizationName": "UpBeat 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/802ce909-cf9e-4aa1-8139-998856c72308", - "OrganizationName": "UpBeat 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/54d0617c-caed-4f35-ae16-4a69ce111e6b", - "OrganizationName": "Joslyn Gumbs MD OBGYN", + "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/54d0617c-caed-4f35-ae16-4a69ce111e6b", - "OrganizationName": "Joslyn Gumbs MD OBGYN", + "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/64005c98-b2cd-41ae-86cf-6b16f82cbeb3", - "OrganizationName": "EMS PHYSICAL THERAPY", + "URL": "https://api.patientfusion.com/fhir/r4/v1/54d0617c-caed-4f35-ae16-4a69ce111e6b", + "OrganizationName": "Joslyn Gumbs MD OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/64005c98-b2cd-41ae-86cf-6b16f82cbeb3", - "OrganizationName": "EMS PHYSICAL THERAPY", + "URL": "https://api.practicefusion.com/fhir/r4/v1/54d0617c-caed-4f35-ae16-4a69ce111e6b", + "OrganizationName": "Joslyn Gumbs MD OBGYN", "NPIID": "", "OrganizationZipCode": "" }, @@ -7021,14 +6949,14 @@ "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/c8f8e198-8c7a-4bfc-81b8-330e9e9e1a63", + "OrganizationName": "CHAM CLINIC", "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/c8f8e198-8c7a-4bfc-81b8-330e9e9e1a63", + "OrganizationName": "CHAM CLINIC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7044,18 +6972,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/c8f8e198-8c7a-4bfc-81b8-330e9e9e1a63", - "OrganizationName": "CHAM CLINIC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/06c2c45f-271e-4990-ab83-485ee718cc70", "OrganizationName": "Golden Health Modesto", @@ -7069,14 +6985,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3d587f25-ce51-439f-9753-3513652e1b97", - "OrganizationName": "IV Rejuvenation Therapy", + "URL": "https://api.patientfusion.com/fhir/r4/v1/508315e5-c366-4b04-847c-778e640eec1e", + "OrganizationName": "Khadija Ibeh MD MPH PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3d587f25-ce51-439f-9753-3513652e1b97", - "OrganizationName": "IV Rejuvenation Therapy", + "URL": "https://api.practicefusion.com/fhir/r4/v1/508315e5-c366-4b04-847c-778e640eec1e", + "OrganizationName": "Khadija Ibeh MD MPH PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -7093,14 +7009,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/508315e5-c366-4b04-847c-778e640eec1e", - "OrganizationName": "Khadija Ibeh MD MPH PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3d587f25-ce51-439f-9753-3513652e1b97", + "OrganizationName": "IV Rejuvenation Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/508315e5-c366-4b04-847c-778e640eec1e", - "OrganizationName": "Khadija Ibeh MD MPH PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3d587f25-ce51-439f-9753-3513652e1b97", + "OrganizationName": "IV Rejuvenation Therapy", "NPIID": "", "OrganizationZipCode": "" }, @@ -7116,18 +7032,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/0ace65d3-2ccc-4b20-905d-d1e95b5397e3", "OrganizationName": "Institute of Modern Pulmonary and Sleep Medicine", @@ -7153,26 +7057,26 @@ "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/99404555-6a88-44e7-8b7d-03e94e14636d", + "OrganizationName": "StatCare Urgent Care Clinic", "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/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", + "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/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", - "OrganizationName": "Reliance Medical Associates of Jax, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ef96bec6-5f1c-4018-a6f8-6140b9d39968", + "OrganizationName": "EMILY WANYOIKE Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -7189,14 +7093,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4bd562de-2951-4330-8ddb-313804a1d5af", - "OrganizationName": "Falcon HealthCare 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/4bd562de-2951-4330-8ddb-313804a1d5af", - "OrganizationName": "Falcon HealthCare Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", + "OrganizationName": "Reliance Medical Associates of Jax, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7213,50 +7117,50 @@ "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/4bd562de-2951-4330-8ddb-313804a1d5af", + "OrganizationName": "Falcon HealthCare Practice", "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/4bd562de-2951-4330-8ddb-313804a1d5af", + "OrganizationName": "Falcon HealthCare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4fc11075-9fe1-4644-89b9-f810d06c118d", - "OrganizationName": "Abundant Health Family Care", + "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/4fc11075-9fe1-4644-89b9-f810d06c118d", - "OrganizationName": "Abundant Health Family Care", + "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/6ebb2979-74ce-459a-b50d-1ed0aee11773", - "OrganizationName": "Las Vegas Pediatric Urology", + "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/6ebb2979-74ce-459a-b50d-1ed0aee11773", - "OrganizationName": "Las Vegas Pediatric Urology", + "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/8960062d-4eae-448d-b030-73fcc9475bcd", - "OrganizationName": "The Family Practice of Madison", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4fc11075-9fe1-4644-89b9-f810d06c118d", + "OrganizationName": "Abundant Health Family Care", "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/4fc11075-9fe1-4644-89b9-f810d06c118d", + "OrganizationName": "Abundant Health Family Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -7273,26 +7177,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", - "OrganizationName": "Nova Medica PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cb19fc50-cd38-4c92-b6ac-1b26686417c8", + "OrganizationName": "Central Ky Recovery Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", - "OrganizationName": "Nova Medica PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cb19fc50-cd38-4c92-b6ac-1b26686417c8", + "OrganizationName": "Central Ky Recovery Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cb19fc50-cd38-4c92-b6ac-1b26686417c8", - "OrganizationName": "Central Ky Recovery Management", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b74e0ea4-2000-4836-b5f0-6dbd7d1dd5ab", + "OrganizationName": "REVLIS MEDICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cb19fc50-cd38-4c92-b6ac-1b26686417c8", - "OrganizationName": "Central Ky Recovery Management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b74e0ea4-2000-4836-b5f0-6dbd7d1dd5ab", + "OrganizationName": "REVLIS MEDICAL", "NPIID": "", "OrganizationZipCode": "" }, @@ -7309,14 +7213,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b74e0ea4-2000-4836-b5f0-6dbd7d1dd5ab", - "OrganizationName": "REVLIS MEDICAL", + "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/b74e0ea4-2000-4836-b5f0-6dbd7d1dd5ab", - "OrganizationName": "REVLIS MEDICAL", + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", + "OrganizationName": "Nova Medica PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7380,18 +7296,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/749bf585-7385-4f21-a8b0-bbc85549462a", - "OrganizationName": "Boston Psychiatric Care LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a93974e2-4f96-40a1-9627-7f5e611e679e", "OrganizationName": "Susan E. Jenkins, M.D., P.A.", @@ -7416,6 +7320,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/749bf585-7385-4f21-a8b0-bbc85549462a", + "OrganizationName": "Boston Psychiatric Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", "OrganizationName": "HENRY E PAEZ", @@ -7453,50 +7369,50 @@ "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/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", + "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", "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/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", + "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", "NPIID": "", "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/7e192b53-1f4e-4ea9-b957-3063a470dd7b", + "OrganizationName": "Restore First Health", "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/7e192b53-1f4e-4ea9-b957-3063a470dd7b", + "OrganizationName": "Restore First Health", "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/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", "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/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -7524,18 +7440,6 @@ "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/8b4f02dc-63ab-4415-ac17-6e9120878ae1", "OrganizationName": "Carine Family Medicine", @@ -7549,14 +7453,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4a5c55ab-722d-4627-be6b-33f977995189", - "OrganizationName": "Rapido Clinica Familiar", + "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/4a5c55ab-722d-4627-be6b-33f977995189", - "OrganizationName": "Rapido Clinica Familiar", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", + "OrganizationName": "Family Healthcare of Jackson", "NPIID": "", "OrganizationZipCode": "" }, @@ -7585,26 +7489,14 @@ "OrganizationZipCode": "" }, { - "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/b0eb4826-4ebb-48af-8376-b4b8f30dce4c", - "OrganizationName": "Rightplace Family Clinic", - "NPIID": "", - "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/4a5c55ab-722d-4627-be6b-33f977995189", + "OrganizationName": "Rapido Clinica Familiar", "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/4a5c55ab-722d-4627-be6b-33f977995189", + "OrganizationName": "Rapido Clinica Familiar", "NPIID": "", "OrganizationZipCode": "" }, @@ -7621,14 +7513,14 @@ "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/822f9af9-93a4-41d0-bfae-ef20f696be75", + "OrganizationName": "LactationMD, PLLC", "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/822f9af9-93a4-41d0-bfae-ef20f696be75", + "OrganizationName": "LactationMD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7656,18 +7548,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/36c86322-b04c-4640-be5a-e2422c3533fa", - "OrganizationName": "Hurst Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4b500487-1148-432f-ae48-c7c0a8a7385b", "OrganizationName": "Victor Levitan, MD, PLLC", @@ -7681,26 +7561,26 @@ "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/36c86322-b04c-4640-be5a-e2422c3533fa", + "OrganizationName": "Hurst Medical Clinic", "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/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/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", "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/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -7716,6 +7596,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/01ec5525-dac8-47ad-9e9d-b8672943053c", + "OrganizationName": "Heart and Vascular Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ed0136da-bae8-47cc-bfb2-6ccdb383dbfd", "OrganizationName": "Premium Practitioners Plus INC", @@ -7729,26 +7621,26 @@ "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/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "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/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "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/9f3b072a-9199-4c31-a094-d59eb48fd239", + "OrganizationName": "Northern Lights Health, LLC", "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/9f3b072a-9199-4c31-a094-d59eb48fd239", + "OrganizationName": "Northern Lights Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7836,18 +7728,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/220393ee-a789-41d9-a5bd-541d5aacc250", "OrganizationName": "INSTITUTE FOR BEHAVIORAL MEDICINE", @@ -7885,26 +7765,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e0b8bf2-d8fa-462b-8918-f4f5d9d36ec3", - "OrganizationName": "Sam Medical Center of America PLLC", + "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/6e0b8bf2-d8fa-462b-8918-f4f5d9d36ec3", - "OrganizationName": "Sam Medical Center of America PLLC", + "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/34af830d-0f92-4d5d-aaba-ccaef7f7416c", - "OrganizationName": "365 On Call, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e0b8bf2-d8fa-462b-8918-f4f5d9d36ec3", + "OrganizationName": "Sam Medical Center of America PLLC", "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/6e0b8bf2-d8fa-462b-8918-f4f5d9d36ec3", + "OrganizationName": "Sam Medical Center of America PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7921,26 +7801,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7f3b5342-f00c-409e-89fb-c983dd7c54d7", - "OrganizationName": "Clínica Tanamá - Arecibo", + "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/7f3b5342-f00c-409e-89fb-c983dd7c54d7", - "OrganizationName": "Clínica Tanamá - Arecibo", + "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/25d503f0-21d2-421a-aaab-5ad659304919", - "OrganizationName": "Roderick Vergel de Dios,MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7f3b5342-f00c-409e-89fb-c983dd7c54d7", + "OrganizationName": "Clínica Tanamá - Arecibo", "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/7f3b5342-f00c-409e-89fb-c983dd7c54d7", + "OrganizationName": "Clínica Tanamá - Arecibo", "NPIID": "", "OrganizationZipCode": "" }, @@ -7956,6 +7836,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/25d503f0-21d2-421a-aaab-5ad659304919", + "OrganizationName": "Roderick Vergel de Dios,MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d578b4cd-07ab-4e00-b024-6fb3164aa9be", "OrganizationName": "Haris Medical Group", @@ -8004,18 +7896,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", - "OrganizationName": "The Downing Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", "OrganizationName": "Connie D. Chappel, M.D.", @@ -8041,62 +7921,62 @@ "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/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", + "OrganizationName": "The Downing Clinic", "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/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", + "OrganizationName": "The Downing Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/22f04f19-1cf2-427e-a796-18fdca378bcf", - "OrganizationName": "Lisset Suarez Practice", + "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/22f04f19-1cf2-427e-a796-18fdca378bcf", - "OrganizationName": "Lisset Suarez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", + "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", "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/22f04f19-1cf2-427e-a796-18fdca378bcf", + "OrganizationName": "Lisset Suarez Practice", "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/22f04f19-1cf2-427e-a796-18fdca378bcf", + "OrganizationName": "Lisset Suarez Practice", "NPIID": "", "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/81a258e3-5eed-49b3-93c4-289a3a799665", - "OrganizationName": "Health and Aging Management", + "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/81a258e3-5eed-49b3-93c4-289a3a799665", - "OrganizationName": "Health and Aging Management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9956fe3c-aa41-4fe2-9dde-f616207a438d", + "OrganizationName": "Primary Care and Preventive Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -8137,14 +8017,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", - "OrganizationName": "Clinica Medica Mi Salud", + "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/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", - "OrganizationName": "Clinica Medica Mi Salud", + "URL": "https://api.practicefusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", + "OrganizationName": "Health and Aging Management", "NPIID": "", "OrganizationZipCode": "" }, @@ -8160,6 +8040,18 @@ "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", @@ -8257,26 +8149,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/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": "" }, @@ -8305,50 +8197,38 @@ "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/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", - "OrganizationName": "Broward weight loss \u0026 Primary care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "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/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", + "OrganizationName": "DHMR Clinics", "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/65554971-d882-4364-99c2-28ee966fe8aa", + "OrganizationName": "Browne Medical PLC", "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/65554971-d882-4364-99c2-28ee966fe8aa", + "OrganizationName": "Browne Medical PLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -8365,14 +8245,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/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", + "OrganizationName": "Broward weight loss \u0026 Primary care", "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/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", + "OrganizationName": "Broward weight loss \u0026 Primary care", "NPIID": "", "OrganizationZipCode": "" }, @@ -8401,14 +8281,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", + "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/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", + "OrganizationName": "Dynamic Health \u0026 Energy", "NPIID": "", "OrganizationZipCode": "" }, @@ -8437,38 +8317,38 @@ "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/7058c7fe-0766-40fd-8ea2-26f1dd67c175", - "OrganizationName": "Firstfruits Medical Clinic", + "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/5e364715-53d4-40e8-8645-f3a3e7df28ed", - "OrganizationName": "First Choice Healthcare And Counseling", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7058c7fe-0766-40fd-8ea2-26f1dd67c175", + "OrganizationName": "Firstfruits Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5e364715-53d4-40e8-8645-f3a3e7df28ed", - "OrganizationName": "First Choice Healthcare And Counseling", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7058c7fe-0766-40fd-8ea2-26f1dd67c175", + "OrganizationName": "Firstfruits Medical 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/5e364715-53d4-40e8-8645-f3a3e7df28ed", + "OrganizationName": "First Choice Healthcare And Counseling", "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/5e364715-53d4-40e8-8645-f3a3e7df28ed", + "OrganizationName": "First Choice Healthcare And Counseling", "NPIID": "", "OrganizationZipCode": "" }, @@ -8496,6 +8376,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/bab5041c-0973-4edb-aa33-c468b8cb8e28", + "OrganizationName": "Galenos Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/80a3c4f0-1c23-45a2-a015-72e741c5bc03", "OrganizationName": "Fresh Start Psychiatry and Recovery", @@ -8521,14 +8413,14 @@ "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/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", "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/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -8545,74 +8437,74 @@ "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/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", + "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/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", + "OrganizationName": "Grupo Renal Del Este", "NPIID": "", "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/12bae714-40f2-4903-a5db-9ed39ba5a577", + "OrganizationName": "New Jersey Heart and Vein", "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/12bae714-40f2-4903-a5db-9ed39ba5a577", + "OrganizationName": "New Jersey Heart and Vein", "NPIID": "", "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/12bae714-40f2-4903-a5db-9ed39ba5a577", - "OrganizationName": "New Jersey Heart and Vein", + "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/12bae714-40f2-4903-a5db-9ed39ba5a577", - "OrganizationName": "New Jersey Heart and Vein", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", + "OrganizationName": "Infinity Group Health", "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/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "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/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -8652,18 +8544,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/4eb122da-e252-4574-8ccf-ef4ebb386486", - "OrganizationName": "Kinghaven Medical System, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", "OrganizationName": "Thierry Jacquemin DO PA", @@ -8688,6 +8568,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/4eb122da-e252-4574-8ccf-ef4ebb386486", + "OrganizationName": "Kinghaven Medical System, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a28bdb41-5506-4edd-ba56-91c5f9bcdda2", "OrganizationName": "Pivotal Health and Wellness Clinic", @@ -8772,18 +8664,6 @@ "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 +8701,26 @@ "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/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", "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/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", "NPIID": "", "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/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", + "OrganizationName": "Inspire Healthcare Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", - "OrganizationName": "Spartanburg Day School - Griffin Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", + "OrganizationName": "Inspire Healthcare Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -8868,6 +8748,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/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", @@ -8904,18 +8796,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/dab6fc62-0249-4232-93ac-63b74a10d1d4", "OrganizationName": "M. Chavez, MD, SC", @@ -8952,6 +8832,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/655a3894-1f51-4f1c-bd4f-618d559dccf1", "OrganizationName": "Maryam Khan MD", @@ -8977,26 +8869,26 @@ "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": "" }, { - "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": "" }, @@ -9036,18 +8928,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/2f7d3f2c-6ea8-471a-83f3-abe4f9aadeef", "OrganizationName": "SAROJ SEHGAL MD", @@ -9109,8 +8989,20 @@ "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/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", "NPIID": "", "OrganizationZipCode": "" }, @@ -9156,18 +9048,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/12f54de6-88c8-4eeb-acd6-457469aed9f0", "OrganizationName": "BlueSky Health", @@ -9217,14 +9097,14 @@ "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/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", "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/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -9516,18 +9396,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/797ee988-5eaf-44fe-8124-c892e45b4768", - "OrganizationName": "Riverbank Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", "OrganizationName": "Well By Messer", @@ -9624,6 +9492,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/3c39068d-1fef-449a-a782-e75e06cc9446", + "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", "OrganizationName": "jumana chalabi MD PC", @@ -9684,18 +9564,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/3c39068d-1fef-449a-a782-e75e06cc9446", - "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", "OrganizationName": "Caring Minds LLC", @@ -9733,26 +9601,26 @@ "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": "" }, { - "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": "" }, @@ -9817,26 +9685,26 @@ "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/e045ea0f-ad97-4450-964c-9eff876ceec4", + "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", "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/e045ea0f-ad97-4450-964c-9eff876ceec4", + "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", "NPIID": "", "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": "" }, @@ -9888,6 +9756,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/6ae3a930-1403-469d-8697-fda03d07f202", + "OrganizationName": "Reflections Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", "OrganizationName": "Victermahealth.CORP", @@ -9924,18 +9804,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/6ae3a930-1403-469d-8697-fda03d07f202", - "OrganizationName": "Reflections Counseling Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", "OrganizationName": "Apex Heart and Vascular Care", @@ -9973,26 +9841,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f9347948-8109-4952-a33b-5a42bc7bf45c", - "OrganizationName": "Refine By Dr. Nazia", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f9347948-8109-4952-a33b-5a42bc7bf45c", - "OrganizationName": "Refine By Dr. Nazia", - "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/d83b2a14-3cdc-4141-ae1c-0f5d38787cba", + "OrganizationName": "Healwell Primary Care", "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/d83b2a14-3cdc-4141-ae1c-0f5d38787cba", + "OrganizationName": "Healwell Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -10009,14 +9865,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d83b2a14-3cdc-4141-ae1c-0f5d38787cba", - "OrganizationName": "Healwell Primary Care", + "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/d83b2a14-3cdc-4141-ae1c-0f5d38787cba", - "OrganizationName": "Healwell Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", + "OrganizationName": "Vortex Mental Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -10056,6 +9912,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/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": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/060ff2e3-979e-4b70-a386-63b01fa4fa92", "OrganizationName": "Imperial Health Medical Group", @@ -10081,26 +9961,26 @@ "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/4518e4f6-f23c-42d5-8910-a8ff406b7e53", + "OrganizationName": "Nishith Gami 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/4518e4f6-f23c-42d5-8910-a8ff406b7e53", + "OrganizationName": "Nishith Gami 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/7a292a93-23c2-4e38-bf94-09edd3d4465f", + "OrganizationName": "Luis Carcorze Practice", "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/7a292a93-23c2-4e38-bf94-09edd3d4465f", + "OrganizationName": "Luis Carcorze Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -10117,26 +9997,26 @@ "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/af0d0309-b2de-44ba-a79d-dccfcb66e582", + "OrganizationName": "Greenwood Medical Services", "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/af0d0309-b2de-44ba-a79d-dccfcb66e582", + "OrganizationName": "Greenwood Medical Services", "NPIID": "", "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/aee0478a-efa0-4797-92ce-38bf520f084d", + "OrganizationName": "Serious Illness Consultants by Care Associates", "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/aee0478a-efa0-4797-92ce-38bf520f084d", + "OrganizationName": "Serious Illness Consultants by Care Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -10153,14 +10033,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af0d0309-b2de-44ba-a79d-dccfcb66e582", - "OrganizationName": "Greenwood 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/af0d0309-b2de-44ba-a79d-dccfcb66e582", - "OrganizationName": "Greenwood Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", + "OrganizationName": "CompServ Health Resources Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -10177,38 +10057,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/512f8fab-c225-4732-87af-d0bc40cb5b53", - "OrganizationName": "Bella Vita Integrated Healing", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f0d9d446-18a0-462f-b962-682b742fcc2d", + "OrganizationName": "Xmplify Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/512f8fab-c225-4732-87af-d0bc40cb5b53", - "OrganizationName": "Bella Vita Integrated Healing", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f0d9d446-18a0-462f-b962-682b742fcc2d", + "OrganizationName": "Xmplify Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aee0478a-efa0-4797-92ce-38bf520f084d", - "OrganizationName": "Serious Illness Consultants by Care Associates", + "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/aee0478a-efa0-4797-92ce-38bf520f084d", - "OrganizationName": "Serious Illness Consultants by Care Associates", + "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/62c657cf-0848-484e-ba5b-e146d82c5ef7", - "OrganizationName": "CompServ Health Resources Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c5b8483-b7d2-43ac-a46c-5b0a7b767ae6", + "OrganizationName": "Belly", "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/5c5b8483-b7d2-43ac-a46c-5b0a7b767ae6", + "OrganizationName": "Belly", "NPIID": "", "OrganizationZipCode": "" }, @@ -10225,38 +10105,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "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/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "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/5c5b8483-b7d2-43ac-a46c-5b0a7b767ae6", - "OrganizationName": "Belly", + "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/5c5b8483-b7d2-43ac-a46c-5b0a7b767ae6", - "OrganizationName": "Belly", + "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/f0d9d446-18a0-462f-b962-682b742fcc2d", - "OrganizationName": "Xmplify Health Clinic", + "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/f0d9d446-18a0-462f-b962-682b742fcc2d", - "OrganizationName": "Xmplify Health Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", + "OrganizationName": "NSIPA", "NPIID": "", "OrganizationZipCode": "" }, @@ -10273,50 +10153,26 @@ "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/9f8236f3-c624-4053-8e4a-8b0c17817371", + "OrganizationName": "Coastal Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "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/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.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9f8236f3-c624-4053-8e4a-8b0c17817371", + "OrganizationName": "Coastal Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9f8236f3-c624-4053-8e4a-8b0c17817371", - "OrganizationName": "Coastal Integrative Medicine", + "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/9f8236f3-c624-4053-8e4a-8b0c17817371", - "OrganizationName": "Coastal Integrative Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", + "OrganizationName": "TUYA PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -10345,26 +10201,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8ab3331-da9f-477c-8718-2c7117751d7e", - "OrganizationName": "Durant CPD Integrated Healthcare", + "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/f8ab3331-da9f-477c-8718-2c7117751d7e", - "OrganizationName": "Durant CPD Integrated Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee5ec7e9-fab3-4f59-ab7f-88586a02efbf", + "OrganizationName": "Raysa Raysa Practice", "NPIID": "", "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/f8ab3331-da9f-477c-8718-2c7117751d7e", + "OrganizationName": "Durant CPD Integrated Healthcare", "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/f8ab3331-da9f-477c-8718-2c7117751d7e", + "OrganizationName": "Durant CPD Integrated Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -10380,6 +10236,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/e3a85668-a88e-4d1a-91a5-5564c9b0f44c", "OrganizationName": "H. Isaac Office", @@ -10416,18 +10284,6 @@ "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", @@ -10441,26 +10297,26 @@ "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/e0adbdb6-9ada-43d9-a603-afbd90b44f25", + "OrganizationName": "Adult Health Primary Care Services", "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/e0adbdb6-9ada-43d9-a603-afbd90b44f25", + "OrganizationName": "Adult Health Primary Care Services", "NPIID": "", "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": "" }, @@ -10536,6 +10392,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/46ed344f-2676-4fd3-9c99-92d450d8f8b3", + "OrganizationName": "Dr. Gretchenjan Gavero D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/46ed344f-2676-4fd3-9c99-92d450d8f8b3", + "OrganizationName": "Dr. Gretchenjan Gavero D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", "OrganizationName": "1st Responder HealthCare", @@ -10573,26 +10441,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46ed344f-2676-4fd3-9c99-92d450d8f8b3", - "OrganizationName": "Dr. Gretchenjan Gavero D.O.", + "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/46ed344f-2676-4fd3-9c99-92d450d8f8b3", - "OrganizationName": "Dr. Gretchenjan Gavero D.O.", + "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/2ad60439-d71d-4219-94ff-4216724ca4e3", - "OrganizationName": "ConciergeMED, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a121db96-c207-48d8-820b-abf9cf6b8891", + "OrganizationName": "Endocrinology", "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/a121db96-c207-48d8-820b-abf9cf6b8891", + "OrganizationName": "Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, @@ -10621,14 +10489,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a121db96-c207-48d8-820b-abf9cf6b8891", - "OrganizationName": "Endocrinology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d6b5762a-0247-4d2b-9fe7-4b7137cbd16a", + "OrganizationName": "JMK Community Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a121db96-c207-48d8-820b-abf9cf6b8891", - "OrganizationName": "Endocrinology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d6b5762a-0247-4d2b-9fe7-4b7137cbd16a", + "OrganizationName": "JMK Community Health Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -10656,6 +10524,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/e4c4eeaa-68a1-4b32-a13e-c01644437243", + "OrganizationName": "Uzma Zafar MD Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/01412a71-cffa-4f69-945e-6a69a001aaf8", "OrganizationName": "Karen Neurology PLC", @@ -10681,14 +10561,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d6b5762a-0247-4d2b-9fe7-4b7137cbd16a", - "OrganizationName": "JMK Community Health Center", + "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/d6b5762a-0247-4d2b-9fe7-4b7137cbd16a", - "OrganizationName": "JMK Community Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", + "OrganizationName": "Florence Oladokun PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -10704,18 +10584,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/e4c4eeaa-68a1-4b32-a13e-c01644437243", - "OrganizationName": "Uzma Zafar MD Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/724066fc-8afe-4831-8d00-ec2c4702e96a", "OrganizationName": "Bywater Mental Health", @@ -10729,98 +10597,98 @@ "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/6abb452b-2594-4651-b040-a2aa69b26fe0", + "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", "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/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/d9053015-1eed-4823-8db7-38997be8f9ff", + "OrganizationName": "Southern Nevada Internists", "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/d9053015-1eed-4823-8db7-38997be8f9ff", + "OrganizationName": "Southern Nevada Internists", "NPIID": "", "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/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", + "OrganizationName": "Pediatric TLC,INC", "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/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/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", "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/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", "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/e81749ae-d15c-49f3-9d63-5f4507f35246", + "OrganizationName": "M\u0026B Mobile NPs", "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/e81749ae-d15c-49f3-9d63-5f4507f35246", + "OrganizationName": "M\u0026B Mobile NPs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d9053015-1eed-4823-8db7-38997be8f9ff", - "OrganizationName": "Southern Nevada Internists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions Wellness Options", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d9053015-1eed-4823-8db7-38997be8f9ff", - "OrganizationName": "Southern Nevada Internists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions Wellness Options", "NPIID": "", "OrganizationZipCode": "" }, @@ -10837,14 +10705,14 @@ "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/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", "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/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -10896,30 +10764,6 @@ "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": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fbfef303-aa8d-47fd-a901-d2405205f47e", - "OrganizationName": "Psych North", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fbfef303-aa8d-47fd-a901-d2405205f47e", - "OrganizationName": "Psych North", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8376f3ee-9c61-4fc3-ae7b-b6eda4724798", "OrganizationName": "Womens Health Services of Maryland", @@ -10945,38 +10789,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05e22424-b347-40c8-88a4-3e6d2d1a67f3", - "OrganizationName": "UNIBE Care Family Practice Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fbfef303-aa8d-47fd-a901-d2405205f47e", + "OrganizationName": "Psych North", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/05e22424-b347-40c8-88a4-3e6d2d1a67f3", - "OrganizationName": "UNIBE Care Family Practice Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fbfef303-aa8d-47fd-a901-d2405205f47e", + "OrganizationName": "Psych North", "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": "" }, { - "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/05e22424-b347-40c8-88a4-3e6d2d1a67f3", + "OrganizationName": "UNIBE Care Family Practice Clinic", "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/05e22424-b347-40c8-88a4-3e6d2d1a67f3", + "OrganizationName": "UNIBE Care Family Practice Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/9efd82e9-7be3-452e-acbe-f8e7c97f2965", + "OrganizationName": "Community Physicians", "NPIID": "", "OrganizationZipCode": "" }, @@ -11017,50 +10873,50 @@ "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": "" }, { - "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/a69c971f-882a-4481-b186-14573c06c803", + "OrganizationName": "Naperville Family Clinic", "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/a69c971f-882a-4481-b186-14573c06c803", + "OrganizationName": "Naperville Family Clinic", "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/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "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/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "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": "" }, @@ -11076,18 +10932,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/a69c971f-882a-4481-b186-14573c06c803", - "OrganizationName": "Naperville Family Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/14a1c5d0-b3f0-4010-a42b-7e980d3cbc70", "OrganizationName": "Legacy Family Medicine", @@ -11113,74 +10957,74 @@ "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": "" }, { - "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/bba4e5dc-c40f-4493-be70-217a6ce759a5", + "OrganizationName": "The Center for Emotional Health", "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/bba4e5dc-c40f-4493-be70-217a6ce759a5", + "OrganizationName": "The Center for Emotional Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/320e758b-b69b-4709-90b9-11833b835acb", - "OrganizationName": "Maan Plastic Surgery", + "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/320e758b-b69b-4709-90b9-11833b835acb", - "OrganizationName": "Maan Plastic Surgery", + "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/f932609a-0a73-4ebb-8a8b-69987d1fbd94", - "OrganizationName": "Surany Thompson-FNP-BC", + "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/f932609a-0a73-4ebb-8a8b-69987d1fbd94", - "OrganizationName": "Surany Thompson-FNP-BC", + "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/bba4e5dc-c40f-4493-be70-217a6ce759a5", - "OrganizationName": "The Center for Emotional Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/320e758b-b69b-4709-90b9-11833b835acb", + "OrganizationName": "Maan Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bba4e5dc-c40f-4493-be70-217a6ce759a5", - "OrganizationName": "The Center for Emotional Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/320e758b-b69b-4709-90b9-11833b835acb", + "OrganizationName": "Maan Plastic Surgery", "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/f932609a-0a73-4ebb-8a8b-69987d1fbd94", + "OrganizationName": "Surany Thompson-FNP-BC", "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/f932609a-0a73-4ebb-8a8b-69987d1fbd94", + "OrganizationName": "Surany Thompson-FNP-BC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11208,18 +11052,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/a8316044-1ae1-4260-ac3c-825ddf0be2bf", "OrganizationName": "Vikram Mehta M.D.", @@ -11293,50 +11125,50 @@ "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/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "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/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "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/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", + "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/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", + "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/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", - "OrganizationName": "Hawkins Psychiatry, P.C.", + "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/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", - "OrganizationName": "Hawkins Psychiatry, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", + "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11365,50 +11197,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4f14493-4cb2-445f-9b96-123ad724ec66", - "OrganizationName": "Gibson Psych Services", + "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/c4f14493-4cb2-445f-9b96-123ad724ec66", - "OrganizationName": "Gibson Psych Services", + "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/07a41fcb-f057-4508-9fa9-82850797725e", - "OrganizationName": "Grand Family Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f38ce07c-9fa3-443d-baae-849b639a8e0e", + "OrganizationName": "Our Lady of Hope Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07a41fcb-f057-4508-9fa9-82850797725e", - "OrganizationName": "Grand Family Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f38ce07c-9fa3-443d-baae-849b639a8e0e", + "OrganizationName": "Our Lady of Hope Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f38ce07c-9fa3-443d-baae-849b639a8e0e", - "OrganizationName": "Our Lady of Hope Medical Clinic", + "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/f38ce07c-9fa3-443d-baae-849b639a8e0e", - "OrganizationName": "Our Lady of Hope Medical Clinic", + "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/90c6c369-c0be-41e2-8592-bff7cbfeee36", - "OrganizationName": "Sleep \u0026 Respiratory Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/07a41fcb-f057-4508-9fa9-82850797725e", + "OrganizationName": "Grand Family Wellness", "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/07a41fcb-f057-4508-9fa9-82850797725e", + "OrganizationName": "Grand Family Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -11425,26 +11257,26 @@ "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/0c67709c-b9e1-4dc3-a0fe-d788936326f4", + "OrganizationName": "Practice By Knight", "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/0c67709c-b9e1-4dc3-a0fe-d788936326f4", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c67709c-b9e1-4dc3-a0fe-d788936326f4", - "OrganizationName": "Practice By Knight", + "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/0c67709c-b9e1-4dc3-a0fe-d788936326f4", - "OrganizationName": "Practice By Knight", + "URL": "https://api.practicefusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", + "OrganizationName": "Sleep \u0026 Respiratory Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -11461,14 +11293,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", - "OrganizationName": "Suzanna Dotson, MD PA", + "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/a55eaf21-e495-4427-8bbf-796db9b2de4f", - "OrganizationName": "Suzanna Dotson, MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", + "OrganizationName": "Devaraj Behavioral Helathcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -11497,50 +11329,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1718d97f-e619-4f94-b40c-0ac63f04ece4", - "OrganizationName": "Ultimate Wellness", + "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/1718d97f-e619-4f94-b40c-0ac63f04ece4", - "OrganizationName": "Ultimate Wellness", + "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/b78a87d0-e34c-41a1-a7c4-9404973e5f0b", - "OrganizationName": "Lake Linganore Psychiatry", + "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/b78a87d0-e34c-41a1-a7c4-9404973e5f0b", - "OrganizationName": "Lake Linganore Psychiatry", + "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/58de317b-88b1-4e5f-a298-6dde0784811e", - "OrganizationName": "Advanced Wellness Consultants LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1718d97f-e619-4f94-b40c-0ac63f04ece4", + "OrganizationName": "Ultimate Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", - "OrganizationName": "Advanced Wellness Consultants LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1718d97f-e619-4f94-b40c-0ac63f04ece4", + "OrganizationName": "Ultimate Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5fa572f5-9983-4cd6-b222-92bd6b111b5b", - "OrganizationName": "Internal Medicine Hudson", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b78a87d0-e34c-41a1-a7c4-9404973e5f0b", + "OrganizationName": "Lake Linganore Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5fa572f5-9983-4cd6-b222-92bd6b111b5b", - "OrganizationName": "Internal Medicine Hudson", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b78a87d0-e34c-41a1-a7c4-9404973e5f0b", + "OrganizationName": "Lake Linganore Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -11569,8 +11401,20 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", - "OrganizationName": "Lifeline", + "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/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", + "OrganizationName": "Lifeline", "NPIID": "", "OrganizationZipCode": "" }, @@ -11628,18 +11472,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/7995ac3c-9292-451e-92d0-ed43b4746919", - "OrganizationName": "Finishline IV", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", "OrganizationName": "Mobile Medical Mission PLLC", @@ -11665,26 +11497,14 @@ "OrganizationZipCode": "" }, { - "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/f4cb5581-318f-4dd9-b816-71de4ef11aaa", - "OrganizationName": "AT HOME PRIMARY CARE, INC", - "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/7995ac3c-9292-451e-92d0-ed43b4746919", + "OrganizationName": "Finishline IV", "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/7995ac3c-9292-451e-92d0-ed43b4746919", + "OrganizationName": "Finishline IV", "NPIID": "", "OrganizationZipCode": "" }, @@ -11712,6 +11532,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/46e2023c-ceae-473d-9f32-0ac02df4a382", + "OrganizationName": "Ruth Lopez Valentin Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/f4cb5581-318f-4dd9-b816-71de4ef11aaa", + "OrganizationName": "AT HOME PRIMARY CARE, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", "OrganizationName": "Primary Medicine LLC", @@ -11760,18 +11604,6 @@ "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": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", @@ -11797,38 +11629,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b02daba-f442-4b88-ba24-6a4c1549bccc", - "OrganizationName": "Pioneer Pain Management, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b02daba-f442-4b88-ba24-6a4c1549bccc", - "OrganizationName": "Pioneer Pain Management, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", - "OrganizationName": "ALBERT DENNIS BROOKS, MD", + "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/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", - "OrganizationName": "ALBERT DENNIS BROOKS, MD", + "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/ddf26e0f-7b69-4406-90a5-244539db96ad", - "OrganizationName": "Neurology \u0026 Sleep Medicine Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b02daba-f442-4b88-ba24-6a4c1549bccc", + "OrganizationName": "Pioneer Pain Management, Inc", "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/0b02daba-f442-4b88-ba24-6a4c1549bccc", + "OrganizationName": "Pioneer Pain Management, Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -11869,158 +11689,158 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/009e623b-6575-450c-a4a1-f187cfe797ef", - "OrganizationName": "Starz Medical Associates", + "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/009e623b-6575-450c-a4a1-f187cfe797ef", - "OrganizationName": "Starz Medical Associates", + "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/f3e8057e-b4be-48d1-a6c7-0a618458b8ca", - "OrganizationName": "Pauline Fu, DPM, PC", + "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/f3e8057e-b4be-48d1-a6c7-0a618458b8ca", - "OrganizationName": "Pauline Fu, DPM, PC", + "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/dbb69d53-a26e-4f87-8b02-c57ed9aa54fc", - "OrganizationName": "BAYVIEW HEALTH AND WELLNESS", + "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/dbb69d53-a26e-4f87-8b02-c57ed9aa54fc", - "OrganizationName": "BAYVIEW HEALTH AND WELLNESS", + "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/8fae0485-d72f-47c8-a820-23bd7ff52753", - "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f3e8057e-b4be-48d1-a6c7-0a618458b8ca", + "OrganizationName": "Pauline Fu, DPM, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", - "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f3e8057e-b4be-48d1-a6c7-0a618458b8ca", + "OrganizationName": "Pauline Fu, DPM, PC", "NPIID": "", "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/dbb69d53-a26e-4f87-8b02-c57ed9aa54fc", + "OrganizationName": "BAYVIEW HEALTH AND 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/dbb69d53-a26e-4f87-8b02-c57ed9aa54fc", + "OrganizationName": "BAYVIEW HEALTH AND WELLNESS", "NPIID": "", "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/3a297dab-7dd4-4e29-9753-201ea42cc120", + "OrganizationName": "LifeWay Health \u0026 Wellness", "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/3a297dab-7dd4-4e29-9753-201ea42cc120", + "OrganizationName": "LifeWay Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c2a7925c-9681-48dc-9e7b-3e23fbc3c601", - "OrganizationName": "The Center for Health LLC", + "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/c2a7925c-9681-48dc-9e7b-3e23fbc3c601", - "OrganizationName": "The Center for Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/05a820e0-bfff-4380-b166-d42b34c94ad3", + "OrganizationName": "American Indian Health Service of Chicago", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3a297dab-7dd4-4e29-9753-201ea42cc120", - "OrganizationName": "LifeWay Health \u0026 Wellness", + "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/3a297dab-7dd4-4e29-9753-201ea42cc120", - "OrganizationName": "LifeWay Health \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bdc7f2bc-6539-4c5a-b560-9fb6e865881c", + "OrganizationName": "Healthcare of Greater Washington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6b65f9c3-0538-4a0f-b641-de81321c97d7", - "OrganizationName": "Renew Spine \u0026 Pain Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c2a7925c-9681-48dc-9e7b-3e23fbc3c601", + "OrganizationName": "The Center for Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6b65f9c3-0538-4a0f-b641-de81321c97d7", - "OrganizationName": "Renew Spine \u0026 Pain Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c2a7925c-9681-48dc-9e7b-3e23fbc3c601", + "OrganizationName": "The Center for Health LLC", "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/8b427aa0-4fb7-450f-8ebd-694fa73b6776", + "OrganizationName": "Stacy Welsh Practice", "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/8b427aa0-4fb7-450f-8ebd-694fa73b6776", + "OrganizationName": "Stacy Welsh Practice", "NPIID": "", "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/90aae0a3-b475-45dd-ba9d-5019047bb97f", + "OrganizationName": "Laura Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", - "OrganizationName": "9 Line Integrations", + "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/8b427aa0-4fb7-450f-8ebd-694fa73b6776", - "OrganizationName": "Stacy Welsh Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6b65f9c3-0538-4a0f-b641-de81321c97d7", + "OrganizationName": "Renew Spine \u0026 Pain Institute", "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/6b65f9c3-0538-4a0f-b641-de81321c97d7", + "OrganizationName": "Renew Spine \u0026 Pain Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c6884e67-98aa-4373-8af7-40fba8672b70", - "OrganizationName": "Arias Berrios Dermatology", + "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/c6884e67-98aa-4373-8af7-40fba8672b70", - "OrganizationName": "Arias Berrios Dermatology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", + "OrganizationName": "9 Line Integrations", "NPIID": "", "OrganizationZipCode": "" }, @@ -12037,38 +11857,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/de57cbaa-2b85-4751-8f58-b7e9ba90d17f", - "OrganizationName": "Safe Haven Medical Services", + "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/de57cbaa-2b85-4751-8f58-b7e9ba90d17f", - "OrganizationName": "Safe Haven Medical Services", + "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/c6884e67-98aa-4373-8af7-40fba8672b70", + "OrganizationName": "Arias Berrios Dermatology", "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/c6884e67-98aa-4373-8af7-40fba8672b70", + "OrganizationName": "Arias Berrios Dermatology", "NPIID": "", "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/de57cbaa-2b85-4751-8f58-b7e9ba90d17f", + "OrganizationName": "Safe Haven Medical Services", "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/de57cbaa-2b85-4751-8f58-b7e9ba90d17f", + "OrganizationName": "Safe Haven Medical Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -12120,6 +11940,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", + "OrganizationName": "Jay Lawrence Friedman, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", @@ -12169,20 +12001,44 @@ "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/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "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/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "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/44a1f7fd-62ad-4f37-9086-564856021b53", + "OrganizationName": "Buffalo Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/e8b10a0d-6787-408b-b551-f0537cd7be07", + "OrganizationName": "Spirit Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/d85e729c-0157-4f03-bea4-d2136b3630ed", + "OrganizationName": "Psychology Associates Quantum", "NPIID": "", "OrganizationZipCode": "" }, @@ -12217,50 +12073,50 @@ "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/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", + "OrganizationName": "Portland Pain and Spine", "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/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", + "OrganizationName": "Portland Pain and Spine", "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/68e23210-0328-4f98-b2b8-8f8d0d2c91cd", + "OrganizationName": "Living Well Wellness", "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/68e23210-0328-4f98-b2b8-8f8d0d2c91cd", + "OrganizationName": "Living Well Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/68e23210-0328-4f98-b2b8-8f8d0d2c91cd", - "OrganizationName": "Living Well Wellness", + "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/68e23210-0328-4f98-b2b8-8f8d0d2c91cd", - "OrganizationName": "Living Well Wellness", + "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/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", - "OrganizationName": "Portland Pain and Spine", + "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/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", - "OrganizationName": "Portland Pain and Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", + "OrganizationName": "Washington Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -12289,26 +12145,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/557eede6-85c4-4667-a77d-bbb5e644f833", - "OrganizationName": "M. Joshua Haber, MD", + "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/557eede6-85c4-4667-a77d-bbb5e644f833", - "OrganizationName": "M. Joshua Haber, MD", + "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/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "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/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", + "OrganizationName": "ADENA Health Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -12324,18 +12180,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", - "OrganizationName": "Northland Cares", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", "OrganizationName": "AllCare Medical Clinic", @@ -12349,26 +12193,26 @@ "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/6fab36ab-6142-4249-882c-ce18900f862b", + "OrganizationName": "Julio Rodriguez Practice", "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/6fab36ab-6142-4249-882c-ce18900f862b", + "OrganizationName": "Julio Rodriguez Practice", "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/66cf956f-c61b-4057-a9f2-98dd3640cf52", + "OrganizationName": "Marichal \u0026 Prieto, MD, PA", "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/66cf956f-c61b-4057-a9f2-98dd3640cf52", + "OrganizationName": "Marichal \u0026 Prieto, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -12397,14 +12241,14 @@ "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/a657998e-92b9-433b-8604-ff8f5d2936a0", + "OrganizationName": "Ali Alamar MD A Professional Corp.", "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/a657998e-92b9-433b-8604-ff8f5d2936a0", + "OrganizationName": "Ali Alamar MD A Professional Corp.", "NPIID": "", "OrganizationZipCode": "" }, @@ -12421,14 +12265,14 @@ "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/5728ac9b-7401-4589-a36b-530f9ddf4a0f", + "OrganizationName": "FAMILY MEDICAL CENTER", "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/5728ac9b-7401-4589-a36b-530f9ddf4a0f", + "OrganizationName": "FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -12456,18 +12300,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5728ac9b-7401-4589-a36b-530f9ddf4a0f", - "OrganizationName": "FAMILY MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5728ac9b-7401-4589-a36b-530f9ddf4a0f", - "OrganizationName": "FAMILY MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9ca9a2cc-5440-4f64-9dda-a33954966073", "OrganizationName": "Fountain Pulmonary PC", @@ -12492,6 +12324,18 @@ "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", @@ -12517,50 +12361,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", - "OrganizationName": "Prevention Medical Services PSC", + "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/b3017e3e-9e76-400d-8f14-22d564477ae2", - "OrganizationName": "Prevention Medical Services PSC", + "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/26346ed5-7540-4f53-8fea-6f092f2596f2", - "OrganizationName": "Trinity 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/26346ed5-7540-4f53-8fea-6f092f2596f2", - "OrganizationName": "Trinity Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", + "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", "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/26346ed5-7540-4f53-8fea-6f092f2596f2", + "OrganizationName": "Trinity Clinic", "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/26346ed5-7540-4f53-8fea-6f092f2596f2", + "OrganizationName": "Trinity Clinic", "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/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "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/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "NPIID": "", "OrganizationZipCode": "" }, @@ -12577,26 +12421,26 @@ "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/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle 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/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle Clinic", "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": "" }, @@ -12613,14 +12457,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/359ad787-415a-4ec1-a8d7-5a0375b7029c", + "OrganizationName": "CTR GENERAL \u0026 LAPAROSCOPIC SURGERY", "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/359ad787-415a-4ec1-a8d7-5a0375b7029c", + "OrganizationName": "CTR GENERAL \u0026 LAPAROSCOPIC SURGERY", "NPIID": "", "OrganizationZipCode": "" }, @@ -12636,18 +12480,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/359ad787-415a-4ec1-a8d7-5a0375b7029c", - "OrganizationName": "CTR GENERAL \u0026 LAPAROSCOPIC SURGERY", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/359ad787-415a-4ec1-a8d7-5a0375b7029c", - "OrganizationName": "CTR GENERAL \u0026 LAPAROSCOPIC SURGERY", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c39d9273-9cb2-4e0e-8200-5a26d8518301", "OrganizationName": "Prestige Care Physician", @@ -12696,6 +12528,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d7cacc1d-0321-4ac0-a9db-6f0d02289162", + "OrganizationName": "LifeForce Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d7cacc1d-0321-4ac0-a9db-6f0d02289162", + "OrganizationName": "LifeForce Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a17ed89b-04c8-411f-b196-88b2f9792c76", + "OrganizationName": "Apple Rehab Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a17ed89b-04c8-411f-b196-88b2f9792c76", + "OrganizationName": "Apple Rehab Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", "OrganizationName": "A Heartbeat Away ...", @@ -12733,26 +12589,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d7cacc1d-0321-4ac0-a9db-6f0d02289162", - "OrganizationName": "LifeForce Healthcare, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d7cacc1d-0321-4ac0-a9db-6f0d02289162", - "OrganizationName": "LifeForce Healthcare, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a17ed89b-04c8-411f-b196-88b2f9792c76", - "OrganizationName": "Apple Rehab Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e00cb729-edd2-440f-9427-d4f38769a3a3", + "OrganizationName": "Geraldine Marrocco Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a17ed89b-04c8-411f-b196-88b2f9792c76", - "OrganizationName": "Apple Rehab Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e00cb729-edd2-440f-9427-d4f38769a3a3", + "OrganizationName": "Geraldine Marrocco Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -12769,26 +12613,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e00cb729-edd2-440f-9427-d4f38769a3a3", - "OrganizationName": "Geraldine Marrocco Practice", + "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/e00cb729-edd2-440f-9427-d4f38769a3a3", - "OrganizationName": "Geraldine Marrocco Practice", + "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/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": "" }, @@ -12805,26 +12649,26 @@ "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": "" }, { - "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/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "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/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12853,14 +12697,14 @@ "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/25fa90ad-88a0-4992-a5a3-ac2656de76b6", + "OrganizationName": "Healthy Alliance, LLC", "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/25fa90ad-88a0-4992-a5a3-ac2656de76b6", + "OrganizationName": "Healthy Alliance, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12877,14 +12721,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/25fa90ad-88a0-4992-a5a3-ac2656de76b6", - "OrganizationName": "Healthy Alliance, LLC", + "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/25fa90ad-88a0-4992-a5a3-ac2656de76b6", - "OrganizationName": "Healthy Alliance, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/430db6bf-b48b-434e-bf72-8951fb49bdc0", + "OrganizationName": "DFW Kidney Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -12901,62 +12745,74 @@ "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/37a27d96-3e52-4243-a96f-324ae07918dd", + "OrganizationName": "A\u0026M Medical group pllc", "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/37a27d96-3e52-4243-a96f-324ae07918dd", + "OrganizationName": "A\u0026M Medical group pllc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/91c9a58d-e3da-472b-bb55-b2e4f24c1657", - "OrganizationName": "AWAAM URGENT CARE CLINIC", + "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/91c9a58d-e3da-472b-bb55-b2e4f24c1657", - "OrganizationName": "AWAAM URGENT CARE CLINIC", + "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/430db6bf-b48b-434e-bf72-8951fb49bdc0", - "OrganizationName": "DFW Kidney Care Clinic", + "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/430db6bf-b48b-434e-bf72-8951fb49bdc0", - "OrganizationName": "DFW Kidney Care Clinic", + "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/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "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/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "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/37a27d96-3e52-4243-a96f-324ae07918dd", - "OrganizationName": "A\u0026M Medical group pllc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/91c9a58d-e3da-472b-bb55-b2e4f24c1657", + "OrganizationName": "AWAAM URGENT CARE CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37a27d96-3e52-4243-a96f-324ae07918dd", - "OrganizationName": "A\u0026M Medical group pllc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/91c9a58d-e3da-472b-bb55-b2e4f24c1657", + "OrganizationName": "AWAAM URGENT CARE CLINIC", + "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": "" }, @@ -12997,134 +12853,134 @@ "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/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, 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/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", "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/e0feae9d-6135-43d1-a130-c16622153661", + "OrganizationName": "Tenafly Psychiatric Associates, LLC", "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/e0feae9d-6135-43d1-a130-c16622153661", + "OrganizationName": "Tenafly Psychiatric Associates, LLC", "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/3c9d2104-a362-4198-baf7-a24021c2a469", + "OrganizationName": "Medical Associates of Highland", "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/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/ab142b39-9296-4af7-baa9-07497ac28b8d", + "OrganizationName": "Collier Eyecare", "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/ab142b39-9296-4af7-baa9-07497ac28b8d", + "OrganizationName": "Collier Eyecare", "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": "" }, { - "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/7c0f6dcb-cfba-4969-b365-01e182b1fbbd", + "OrganizationName": "PCVCAW - Phoenix Wellness Program", "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/7c0f6dcb-cfba-4969-b365-01e182b1fbbd", + "OrganizationName": "PCVCAW - Phoenix Wellness Program", "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": "" }, { - "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/e0feae9d-6135-43d1-a130-c16622153661", - "OrganizationName": "Tenafly Psychiatric Associates, LLC", + "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/e0feae9d-6135-43d1-a130-c16622153661", - "OrganizationName": "Tenafly Psychiatric Associates, LLC", + "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/ab142b39-9296-4af7-baa9-07497ac28b8d", - "OrganizationName": "Collier Eyecare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3ffe5be-4255-470e-a02e-4c118d55a2ac", + "OrganizationName": "Just Mental Health, Inc.", "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/e3ffe5be-4255-470e-a02e-4c118d55a2ac", + "OrganizationName": "Just Mental Health, Inc.", "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/4b7d376b-ecf8-46e4-9533-f0fa010071fa", + "OrganizationName": "Southwind Gynecology and Wellness Center", "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/4b7d376b-ecf8-46e4-9533-f0fa010071fa", + "OrganizationName": "Southwind Gynecology and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -13141,14 +12997,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b7d376b-ecf8-46e4-9533-f0fa010071fa", - "OrganizationName": "Southwind Gynecology and Wellness Center", + "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/4b7d376b-ecf8-46e4-9533-f0fa010071fa", - "OrganizationName": "Southwind Gynecology and Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d45291d3-60d9-40d4-9f59-bc17aac53c13", + "OrganizationName": "Rockaway Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -13164,18 +13020,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3ffe5be-4255-470e-a02e-4c118d55a2ac", - "OrganizationName": "Just Mental Health, Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3ffe5be-4255-470e-a02e-4c118d55a2ac", - "OrganizationName": "Just Mental Health, Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7ec1dafc-a1d0-46af-82c8-36fac5af3d5f", "OrganizationName": "PRCCI Clinical Research Center", @@ -13201,14 +13045,14 @@ "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/5022238c-e781-423b-82ca-c2df0acded61", + "OrganizationName": "Andrey Lev Practice", "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/5022238c-e781-423b-82ca-c2df0acded61", + "OrganizationName": "Andrey Lev Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -13249,26 +13093,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", - "OrganizationName": "Andrey Lev Practice", + "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/5022238c-e781-423b-82ca-c2df0acded61", - "OrganizationName": "Andrey Lev Practice", + "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/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "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/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb358dcb-c321-4f45-80df-68d8da26d3e1", + "OrganizationName": "Hawkins Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13285,38 +13129,38 @@ "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/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "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/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3684d4c3-4234-4e4b-b47d-c7d4a76042ff", - "OrganizationName": "Grupo Medico San Jorge 401", + "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/3684d4c3-4234-4e4b-b47d-c7d4a76042ff", - "OrganizationName": "Grupo Medico San Jorge 401", + "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/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "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/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3684d4c3-4234-4e4b-b47d-c7d4a76042ff", + "OrganizationName": "Grupo Medico San Jorge 401", "NPIID": "", "OrganizationZipCode": "" }, @@ -13333,14 +13177,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/1c38659c-d936-447a-8cdc-cfd5663d2ede", + "OrganizationName": "Sedra Medical Clinic PLC", "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/1c38659c-d936-447a-8cdc-cfd5663d2ede", + "OrganizationName": "Sedra Medical Clinic PLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13357,50 +13201,38 @@ "OrganizationZipCode": "" }, { - "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/e54446cb-9529-48f8-8ab1-d2363599a784", - "OrganizationName": "Forest Urgent Care", - "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/36a0f3fa-649b-451c-9d4f-628506258765", + "OrganizationName": "SATISH ANGRA MD, PC", "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/36a0f3fa-649b-451c-9d4f-628506258765", + "OrganizationName": "SATISH ANGRA MD, PC", "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/20b1dc22-eef8-4110-9740-66aad46c525d", + "OrganizationName": "Beverly Wicks Practice", "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/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/e54446cb-9529-48f8-8ab1-d2363599a784", + "OrganizationName": "Forest Urgent Care", "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/e54446cb-9529-48f8-8ab1-d2363599a784", + "OrganizationName": "Forest Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -13417,26 +13249,26 @@ "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/ee1d4c29-9703-4c2f-b995-517b8841310f", + "OrganizationName": "Foot Care Center of Palm Beach", "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/ee1d4c29-9703-4c2f-b995-517b8841310f", + "OrganizationName": "Foot Care Center of Palm Beach", "NPIID": "", "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/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", + "OrganizationName": "FAX NUMBER 304-205-0010", "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/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", + "OrganizationName": "FAX NUMBER 304-205-0010", "NPIID": "", "OrganizationZipCode": "" }, @@ -13453,74 +13285,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", - "OrganizationName": "Foot Care Center of Palm Beach", + "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/ee1d4c29-9703-4c2f-b995-517b8841310f", - "OrganizationName": "Foot Care Center of Palm Beach", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", + "OrganizationName": "Best Life Medical", "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/a998054a-441a-459f-ab6e-4a787aa0421a", + "OrganizationName": "Palm Valley Brain and Spine", "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/a998054a-441a-459f-ab6e-4a787aa0421a", + "OrganizationName": "Palm Valley Brain and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7dfebd52-f43e-4d58-8aae-14d23bd96d35", - "OrganizationName": "Adil pediatrics inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e46d8bf5-9a68-4818-bdde-eed22c93fa5d", + "OrganizationName": "Oceanside Aesthetics and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7dfebd52-f43e-4d58-8aae-14d23bd96d35", - "OrganizationName": "Adil pediatrics inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e46d8bf5-9a68-4818-bdde-eed22c93fa5d", + "OrganizationName": "Oceanside Aesthetics and Wellness", "NPIID": "", "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/4ac90d17-9dcf-423e-a4bc-3fe9c65632df", + "OrganizationName": "Modele Primary Care", "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/4ac90d17-9dcf-423e-a4bc-3fe9c65632df", + "OrganizationName": "Modele Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e46d8bf5-9a68-4818-bdde-eed22c93fa5d", - "OrganizationName": "Oceanside Aesthetics and Wellness", + "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/e46d8bf5-9a68-4818-bdde-eed22c93fa5d", - "OrganizationName": "Oceanside Aesthetics and Wellness", + "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/4ac90d17-9dcf-423e-a4bc-3fe9c65632df", - "OrganizationName": "Modele Primary Care", + "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/4ac90d17-9dcf-423e-a4bc-3fe9c65632df", - "OrganizationName": "Modele Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5ef2aaf8-2d13-4824-94ab-2d853fd2c8be", + "OrganizationName": "MILWAUKEE RHEUMATOLOGY CENTER SC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13536,18 +13368,6 @@ "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", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", "OrganizationName": "MembersMD", @@ -13572,6 +13392,18 @@ "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", + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", @@ -13609,14 +13441,14 @@ "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/7ab86579-bc8d-471f-be4c-6f6d0568328c", + "OrganizationName": "Joan Vicente MD", "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/7ab86579-bc8d-471f-be4c-6f6d0568328c", + "OrganizationName": "Joan Vicente MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -13633,26 +13465,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ab86579-bc8d-471f-be4c-6f6d0568328c", - "OrganizationName": "Joan Vicente MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ab86579-bc8d-471f-be4c-6f6d0568328c", - "OrganizationName": "Joan Vicente MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", - "OrganizationName": "Wu Pediatrics", + "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/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", - "OrganizationName": "Wu Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", + "OrganizationName": "Tri County Medical PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13692,6 +13512,18 @@ "NPIID": "", "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/02bc9151-c209-4e5a-b09c-3a348e4c49be", "OrganizationName": "Palm Springs Medical Group", @@ -13741,74 +13573,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1ae699e0-890e-4ed4-af8a-03685c361ec1", - "OrganizationName": "PROCENTURE HEALTHCARE SOLUTIONS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/79b6b3bd-8709-4847-b817-54a62d58f19b", + "OrganizationName": "Findley Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1ae699e0-890e-4ed4-af8a-03685c361ec1", - "OrganizationName": "PROCENTURE HEALTHCARE SOLUTIONS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/79b6b3bd-8709-4847-b817-54a62d58f19b", + "OrganizationName": "Findley Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec37d006-af0f-40bd-b767-32e5ab514a0a", + "OrganizationName": "Tyler Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec37d006-af0f-40bd-b767-32e5ab514a0a", + "OrganizationName": "Tyler Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/79b6b3bd-8709-4847-b817-54a62d58f19b", - "OrganizationName": "Findley Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44b37eb2-de28-4f49-96f5-52f2099f5ad9", + "OrganizationName": "Vicki A Alberts, MD, MS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/79b6b3bd-8709-4847-b817-54a62d58f19b", - "OrganizationName": "Findley Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44b37eb2-de28-4f49-96f5-52f2099f5ad9", + "OrganizationName": "Vicki A Alberts, MD, MS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ec37d006-af0f-40bd-b767-32e5ab514a0a", - "OrganizationName": "Tyler Wellness Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1ae699e0-890e-4ed4-af8a-03685c361ec1", + "OrganizationName": "PROCENTURE HEALTHCARE SOLUTIONS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ec37d006-af0f-40bd-b767-32e5ab514a0a", - "OrganizationName": "Tyler Wellness Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1ae699e0-890e-4ed4-af8a-03685c361ec1", + "OrganizationName": "PROCENTURE HEALTHCARE SOLUTIONS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7f97c77f-1609-404f-9326-4657dc0cb7f6", - "OrganizationName": "PCAF", + "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/7f97c77f-1609-404f-9326-4657dc0cb7f6", - "OrganizationName": "PCAF", + "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/44b37eb2-de28-4f49-96f5-52f2099f5ad9", - "OrganizationName": "Vicki A Alberts, MD, MS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7f97c77f-1609-404f-9326-4657dc0cb7f6", + "OrganizationName": "PCAF", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44b37eb2-de28-4f49-96f5-52f2099f5ad9", - "OrganizationName": "Vicki A Alberts, MD, MS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7f97c77f-1609-404f-9326-4657dc0cb7f6", + "OrganizationName": "PCAF", "NPIID": "", "OrganizationZipCode": "" }, @@ -13837,26 +13669,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/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": "" }, { - "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/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "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/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13897,110 +13729,110 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/61452447-72e8-4ad7-90f8-109086df4f6b", - "OrganizationName": "Appalachian Wellness, L.L.C.", + "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/61452447-72e8-4ad7-90f8-109086df4f6b", - "OrganizationName": "Appalachian Wellness, L.L.C.", + "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/67f7fc4b-d142-43dc-8148-987a8a36db4f", - "OrganizationName": "Blue Nile Clinic", + "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/67f7fc4b-d142-43dc-8148-987a8a36db4f", - "OrganizationName": "Blue Nile Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", + "OrganizationName": "Phillips Family Healthcare, LLC", "NPIID": "", "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": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", - "OrganizationName": "ANCHOR PEDIATRICS", + "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/69134044-e2b4-4831-b091-843aa125bac1", - "OrganizationName": "ANCHOR PEDIATRICS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f9fd0746-dee5-48e8-8302-466a9191b510", + "OrganizationName": "Integrative Health Group", "NPIID": "", "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/67f7fc4b-d142-43dc-8148-987a8a36db4f", + "OrganizationName": "Blue Nile Clinic", "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/67f7fc4b-d142-43dc-8148-987a8a36db4f", + "OrganizationName": "Blue Nile Clinic", "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/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", + "OrganizationName": "Evan May MD PLLC", "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/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", + "OrganizationName": "Evan May MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", - "OrganizationName": "Evan May MD PLLC", + "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/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", - "OrganizationName": "Evan May MD PLLC", + "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/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "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/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "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/1bc33b60-ffed-4332-880e-6219ae5280ff", + "OrganizationName": "Port Richey Health Center", "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/1bc33b60-ffed-4332-880e-6219ae5280ff", + "OrganizationName": "Port Richey Health Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -14017,38 +13849,38 @@ "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/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", "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/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", "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/520fe204-71d1-437e-b4dd-c32570e0deb3", + "OrganizationName": "CARLOS ALVAREZ Practice", "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/520fe204-71d1-437e-b4dd-c32570e0deb3", + "OrganizationName": "CARLOS ALVAREZ Practice", "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/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "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/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -14065,50 +13897,50 @@ "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/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", "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/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", "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/54a3a020-e417-4034-a6bf-e3a14c50c05b", + "OrganizationName": "Dayal Family Medicine", "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/54a3a020-e417-4034-a6bf-e3a14c50c05b", + "OrganizationName": "Dayal Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/64211585-6c43-4c96-bbb2-26cd1ab1981d", - "OrganizationName": "Quality Wellness House Calls", + "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/64211585-6c43-4c96-bbb2-26cd1ab1981d", - "OrganizationName": "Quality Wellness House Calls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d787472-f13f-413f-9b8d-b24429558e93", + "OrganizationName": "Arizona Rheumatology Consultants, PLC", "NPIID": "", "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/64211585-6c43-4c96-bbb2-26cd1ab1981d", + "OrganizationName": "Quality Wellness House Calls", "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/64211585-6c43-4c96-bbb2-26cd1ab1981d", + "OrganizationName": "Quality Wellness House Calls", "NPIID": "", "OrganizationZipCode": "" }, @@ -14149,86 +13981,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", - "OrganizationName": "Grace Wellness", + "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/46396e21-c4f2-49fe-8671-d6ab9794ee78", - "OrganizationName": "Grace Wellness", + "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", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2586641d-cca6-487b-94c8-d7e0042b978b", + "OrganizationName": "Empire Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ba7b4caf-9765-4de6-8774-57c5b2ff5f20", - "OrganizationName": "DAC HEALTH", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2586641d-cca6-487b-94c8-d7e0042b978b", + "OrganizationName": "Empire Endocrinology", "NPIID": "", "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/1a37eb6e-d8a9-4293-bd10-edcfce563a81", + "OrganizationName": "Spectrum Psychiatric Associates", "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/1a37eb6e-d8a9-4293-bd10-edcfce563a81", + "OrganizationName": "Spectrum Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2586641d-cca6-487b-94c8-d7e0042b978b", - "OrganizationName": "Empire Endocrinology", + "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/2586641d-cca6-487b-94c8-d7e0042b978b", - "OrganizationName": "Empire Endocrinology", + "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/84655a11-1f0e-4906-8821-972cbd91c499", - "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ba7b4caf-9765-4de6-8774-57c5b2ff5f20", + "OrganizationName": "DAC HEALTH", "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/ba7b4caf-9765-4de6-8774-57c5b2ff5f20", + "OrganizationName": "DAC HEALTH", "NPIID": "", "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/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", "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/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1a37eb6e-d8a9-4293-bd10-edcfce563a81", - "OrganizationName": "Spectrum Psychiatric Associates", + "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/1a37eb6e-d8a9-4293-bd10-edcfce563a81", - "OrganizationName": "Spectrum Psychiatric Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", + "OrganizationName": "T. C. Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -14281,14 +14113,14 @@ "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/40276467-0f04-4b19-94d4-518f27f50056", + "OrganizationName": "Balance Orthopedics", "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/40276467-0f04-4b19-94d4-518f27f50056", + "OrganizationName": "Balance Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, @@ -14305,14 +14137,14 @@ "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/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "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/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14352,18 +14184,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/5369534b-f60c-4e1e-98da-bdbcddc7b251", - "OrganizationName": "North Texas Neurological", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", "OrganizationName": "EN LOVE, LLC", @@ -14376,18 +14196,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/47d5fdf7-a84e-4cb0-899e-d6e4d4dc4cb4", - "OrganizationName": "Mind Works", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/47d5fdf7-a84e-4cb0-899e-d6e4d4dc4cb4", - "OrganizationName": "Mind Works", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/39e67f1d-9c60-46ed-b51c-9e761133dfc6", "OrganizationName": "Northern Virginia Neurologic Associates Ltd", @@ -14401,38 +14209,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/319007f3-b561-44d0-8baf-0a2c3d7cb72d", - "OrganizationName": "BodyFix", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/319007f3-b561-44d0-8baf-0a2c3d7cb72d", - "OrganizationName": "BodyFix", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62e78e32-3a4b-414b-a247-87f8a95c0d73", - "OrganizationName": "Nurowav TMS 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/62e78e32-3a4b-414b-a247-87f8a95c0d73", - "OrganizationName": "Nurowav TMS 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/b32cd630-9e51-4050-9f1f-0d27e31b6b47", - "OrganizationName": "James Mazur DPM,PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/319007f3-b561-44d0-8baf-0a2c3d7cb72d", + "OrganizationName": "BodyFix", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b32cd630-9e51-4050-9f1f-0d27e31b6b47", - "OrganizationName": "James Mazur DPM,PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/319007f3-b561-44d0-8baf-0a2c3d7cb72d", + "OrganizationName": "BodyFix", "NPIID": "", "OrganizationZipCode": "" }, @@ -14461,26 +14257,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e692a84b-8150-445e-8679-27ebf6156e27", - "OrganizationName": "rheinchard reyes, md, pa", + "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/e692a84b-8150-445e-8679-27ebf6156e27", - "OrganizationName": "rheinchard reyes, md, pa", + "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/fa038f86-0c92-424e-b37b-8214c42ce82d", - "OrganizationName": "Terrace Landing Finest Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/47d5fdf7-a84e-4cb0-899e-d6e4d4dc4cb4", + "OrganizationName": "Mind Works", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", - "OrganizationName": "Terrace Landing Finest Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/47d5fdf7-a84e-4cb0-899e-d6e4d4dc4cb4", + "OrganizationName": "Mind Works", "NPIID": "", "OrganizationZipCode": "" }, @@ -14497,50 +14293,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a650af13-9f2f-4366-929b-d40956697a7a", - "OrganizationName": "VitaVia Telemedicine", + "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/a650af13-9f2f-4366-929b-d40956697a7a", - "OrganizationName": "VitaVia Telemedicine", + "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/5f34744e-0e5d-4f5f-80a8-46e4fd5da54d", - "OrganizationName": "Nicole Marchesani NP-Family Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e692a84b-8150-445e-8679-27ebf6156e27", + "OrganizationName": "rheinchard reyes, md, pa", "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/e692a84b-8150-445e-8679-27ebf6156e27", + "OrganizationName": "rheinchard reyes, md, pa", "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": "" }, { - "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": "" }, @@ -14557,14 +14353,26 @@ "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/a650af13-9f2f-4366-929b-d40956697a7a", + "OrganizationName": "VitaVia Telemedicine", "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/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": "" }, @@ -14580,6 +14388,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b00c593-fc6b-4d3c-9f20-21da6adfed34", + "OrganizationName": "Oklahoma Gastro Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b00c593-fc6b-4d3c-9f20-21da6adfed34", + "OrganizationName": "Oklahoma Gastro Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5488801a-bd2b-42a8-9791-a270708ee5ff", "OrganizationName": "South Coast Sports and Spine", @@ -14593,14 +14413,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b00c593-fc6b-4d3c-9f20-21da6adfed34", - "OrganizationName": "Oklahoma Gastro Health and Wellness", + "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/2b00c593-fc6b-4d3c-9f20-21da6adfed34", - "OrganizationName": "Oklahoma Gastro Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", + "OrganizationName": "Stanley Librach, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -14641,14 +14461,14 @@ "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": "" }, @@ -14665,14 +14485,26 @@ "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/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", "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/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/4ccfc5bc-6760-4181-bc38-e56863496bfb", + "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14736,42 +14568,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/4ccfc5bc-6760-4181-bc38-e56863496bfb", - "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/36d9627f-b356-495a-84eb-600098efadc6", - "OrganizationName": "A1 Family Mediicine.PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/f4848500-09a3-4294-addb-bd9aadfd1a33", - "OrganizationName": "Elan Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", "OrganizationName": "Main Medical Clinic", @@ -14785,26 +14581,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", - "OrganizationName": "202 Pediatrics", + "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/90a5a623-4b3e-4eff-8e25-7561244f8870", - "OrganizationName": "202 Pediatrics", + "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/2306e1c4-0943-41d9-aec0-e2cc12623ec9", - "OrganizationName": "Eastern Wellness Center, PC", + "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/2306e1c4-0943-41d9-aec0-e2cc12623ec9", - "OrganizationName": "Eastern Wellness Center, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", + "OrganizationName": "A1 Family Mediicine.PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14845,14 +14641,26 @@ "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/2306e1c4-0943-41d9-aec0-e2cc12623ec9", + "OrganizationName": "Eastern Wellness Center, PC", "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/2306e1c4-0943-41d9-aec0-e2cc12623ec9", + "OrganizationName": "Eastern Wellness Center, PC", + "NPIID": "", + "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": "" }, @@ -14893,14 +14701,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e9924d34-291d-4583-b2c7-4e0c8ab85561", - "OrganizationName": "Neurology, Clinical Neurophysiology \u0026 Sleep Disorders", + "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/e9924d34-291d-4583-b2c7-4e0c8ab85561", - "OrganizationName": "Neurology, Clinical Neurophysiology \u0026 Sleep Disorders", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", + "OrganizationName": "Premiere Medical Center of Burbank", "NPIID": "", "OrganizationZipCode": "" }, @@ -14916,6 +14724,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e9924d34-291d-4583-b2c7-4e0c8ab85561", + "OrganizationName": "Neurology, Clinical Neurophysiology \u0026 Sleep Disorders", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e9924d34-291d-4583-b2c7-4e0c8ab85561", + "OrganizationName": "Neurology, Clinical Neurophysiology \u0026 Sleep Disorders", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/294ef5e8-181c-473f-a3d1-f043253bec04", "OrganizationName": "Oculoplastic Associates of West Michigan, PLC", @@ -14929,74 +14749,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", - "OrganizationName": "Victoria Kelly MD LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f45a9a2-aca6-4b8d-950c-b7956e19544f", + "OrganizationName": "Mountain Medicine Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", - "OrganizationName": "Victoria Kelly MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f45a9a2-aca6-4b8d-950c-b7956e19544f", + "OrganizationName": "Mountain Medicine Integrative Wellness", "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/a2fcf9e4-7a40-45b0-8cda-8d07a5500c19", + "OrganizationName": "Macdremma Wellness", "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/a2fcf9e4-7a40-45b0-8cda-8d07a5500c19", + "OrganizationName": "Macdremma Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", - "OrganizationName": "Stellar Healthcare, PLCC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d0077f3c-f540-4142-83ed-9997834f4cc9", + "OrganizationName": "Choice One Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", - "OrganizationName": "Stellar Healthcare, PLCC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d0077f3c-f540-4142-83ed-9997834f4cc9", + "OrganizationName": "Choice One Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a2fcf9e4-7a40-45b0-8cda-8d07a5500c19", - "OrganizationName": "Macdremma Wellness", + "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/a2fcf9e4-7a40-45b0-8cda-8d07a5500c19", - "OrganizationName": "Macdremma Wellness", + "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/6f45a9a2-aca6-4b8d-950c-b7956e19544f", - "OrganizationName": "Mountain Medicine Integrative Wellness", + "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/6f45a9a2-aca6-4b8d-950c-b7956e19544f", - "OrganizationName": "Mountain Medicine Integrative Wellness", + "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/d0077f3c-f540-4142-83ed-9997834f4cc9", - "OrganizationName": "Choice One Family Medicine", + "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/d0077f3c-f540-4142-83ed-9997834f4cc9", - "OrganizationName": "Choice One Family Medicine", + "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/85106c77-09bd-4f73-ad32-9ac4b90c7318", + "OrganizationName": "LAKEFOREST CARDIOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/85106c77-09bd-4f73-ad32-9ac4b90c7318", + "OrganizationName": "LAKEFOREST CARDIOLOGY LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15013,14 +14845,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/85106c77-09bd-4f73-ad32-9ac4b90c7318", - "OrganizationName": "LAKEFOREST CARDIOLOGY LLC", + "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/85106c77-09bd-4f73-ad32-9ac4b90c7318", - "OrganizationName": "LAKEFOREST CARDIOLOGY LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", + "OrganizationName": "OC Rheumatology", "NPIID": "", "OrganizationZipCode": "" }, @@ -15049,50 +14881,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", - "OrganizationName": "Oksana Buttita, DPM, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b30c75ce-636c-4f7e-b2a1-712307d23018", + "OrganizationName": "Vyvo Spine and Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", - "OrganizationName": "Oksana Buttita, DPM, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b30c75ce-636c-4f7e-b2a1-712307d23018", + "OrganizationName": "Vyvo Spine and Pain Management", "NPIID": "", "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b30c75ce-636c-4f7e-b2a1-712307d23018", - "OrganizationName": "Vyvo Spine and Pain Management", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b30c75ce-636c-4f7e-b2a1-712307d23018", - "OrganizationName": "Vyvo Spine and Pain Management", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/c829ee4f-42c9-48b5-9101-e601e02c3248", - "OrganizationName": "Infectious Disease Associates of Orange County", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", + "OrganizationName": "Oksana Buttita, DPM, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15121,62 +14929,62 @@ "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/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", + "OrganizationName": "SeniorSolutions", "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/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", + "OrganizationName": "SeniorSolutions", "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/c829ee4f-42c9-48b5-9101-e601e02c3248", + "OrganizationName": "Infectious Disease Associates of Orange County", "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/c829ee4f-42c9-48b5-9101-e601e02c3248", + "OrganizationName": "Infectious Disease Associates of Orange County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", - "OrganizationName": "SeniorSolutions", + "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/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", - "OrganizationName": "SeniorSolutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", + "OrganizationName": "Canton Family Medicine and Wellness Center", "NPIID": "", "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/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", + "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", "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/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", + "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", "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", + "URL": "https://api.practicefusion.com/fhir/r4/v1/28ee4a37-758a-4551-9539-1ca8dcb867d3", + "OrganizationName": "Advanced Pain Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15193,14 +15001,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", - "OrganizationName": "Greg Cisneros M.D.", + "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/cab2d841-15d3-4f12-af3e-f3361e4d9453", - "OrganizationName": "Greg Cisneros M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", + "OrganizationName": "Althera Alternative Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -15216,6 +15024,18 @@ "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/379e1db3-177e-4537-90f5-92f188cdc021", "OrganizationName": "Clinica Hispana Gloria De America", @@ -15265,14 +15085,14 @@ "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/6bf2a558-006c-4bcf-889c-9a16254c68a0", + "OrganizationName": "PREMIER UROLOGY, PLLC", "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/6bf2a558-006c-4bcf-889c-9a16254c68a0", + "OrganizationName": "PREMIER UROLOGY, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15289,14 +15109,14 @@ "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/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", + "OrganizationName": "Tali AI", "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/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", + "OrganizationName": "Tali AI", "NPIID": "", "OrganizationZipCode": "" }, @@ -15313,38 +15133,26 @@ "OrganizationZipCode": "" }, { - "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/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", - "OrganizationName": "Tali AI", - "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/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "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/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "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/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", "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/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -15373,26 +15181,14 @@ "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/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", - "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", + "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/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", - "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", + "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -15408,18 +15204,6 @@ "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", @@ -15433,50 +15217,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86704fb0-bbd8-4965-abbd-c6a18cf413a4", - "OrganizationName": "Advanced Geriatric Care PLLC DBA Advanced Medical Care Home Visits", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7bd925e9-ea6d-481e-aaa4-fdd851417be8", + "OrganizationName": "Oasis Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86704fb0-bbd8-4965-abbd-c6a18cf413a4", - "OrganizationName": "Advanced Geriatric Care PLLC DBA Advanced Medical Care Home Visits", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7bd925e9-ea6d-481e-aaa4-fdd851417be8", + "OrganizationName": "Oasis Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7bd925e9-ea6d-481e-aaa4-fdd851417be8", - "OrganizationName": "Oasis Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/86704fb0-bbd8-4965-abbd-c6a18cf413a4", + "OrganizationName": "Advanced Geriatric Care PLLC DBA Advanced Medical Care Home Visits", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7bd925e9-ea6d-481e-aaa4-fdd851417be8", - "OrganizationName": "Oasis Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/86704fb0-bbd8-4965-abbd-c6a18cf413a4", + "OrganizationName": "Advanced Geriatric Care PLLC DBA Advanced Medical Care Home Visits", "NPIID": "", "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/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", + "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", "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/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", + "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", "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/762734db-29b8-448a-96b8-c1025134c651", + "OrganizationName": "Bridge Medical Consultants PC", "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/762734db-29b8-448a-96b8-c1025134c651", + "OrganizationName": "Bridge Medical Consultants PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15493,38 +15277,38 @@ "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/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "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/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "NPIID": "", "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/0de11e83-ddec-4ffa-9021-454c0659da32", + "OrganizationName": "JCG NP-Adult Health PLLC", "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/0de11e83-ddec-4ffa-9021-454c0659da32", + "OrganizationName": "JCG NP-Adult Health PLLC", "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/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza 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/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15552,6 +15336,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/d54736f3-a935-4259-a798-aeb2e5cf6d32", + "OrganizationName": "Wellspring Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2af4ad9c-f4c0-4ed2-b63e-7e6139510f4d", "OrganizationName": "ASH Family Medical Practice", @@ -15565,38 +15361,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6c1b919b-a6b9-49c6-aaee-f3918a90faa8", - "OrganizationName": "New Haven Pediatric \u0026 Adolescent Medical Services", + "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/6c1b919b-a6b9-49c6-aaee-f3918a90faa8", - "OrganizationName": "New Haven Pediatric \u0026 Adolescent Medical Services", + "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/f3211c67-de72-48b1-9d9d-c463665f408e", - "OrganizationName": "DNPHealth", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6c1b919b-a6b9-49c6-aaee-f3918a90faa8", + "OrganizationName": "New Haven Pediatric \u0026 Adolescent Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f3211c67-de72-48b1-9d9d-c463665f408e", - "OrganizationName": "DNPHealth", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6c1b919b-a6b9-49c6-aaee-f3918a90faa8", + "OrganizationName": "New Haven Pediatric \u0026 Adolescent Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/befd3bd8-fa97-4214-a75b-42a1b33e15de", - "OrganizationName": "Schine Health, PLLC", + "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/befd3bd8-fa97-4214-a75b-42a1b33e15de", - "OrganizationName": "Schine Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", + "OrganizationName": "Memphis Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -15613,26 +15409,26 @@ "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/f3211c67-de72-48b1-9d9d-c463665f408e", + "OrganizationName": "DNPHealth", "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/f3211c67-de72-48b1-9d9d-c463665f408e", + "OrganizationName": "DNPHealth", "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/77dac999-efa0-4be5-84eb-7acec04b8758", + "OrganizationName": "Wekiva Springs Pediatrics", "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/77dac999-efa0-4be5-84eb-7acec04b8758", + "OrganizationName": "Wekiva Springs Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -15649,38 +15445,38 @@ "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/befd3bd8-fa97-4214-a75b-42a1b33e15de", + "OrganizationName": "Schine Health, PLLC", "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/befd3bd8-fa97-4214-a75b-42a1b33e15de", + "OrganizationName": "Schine Health, PLLC", "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/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", - "OrganizationName": "Metro Heart \u0026 Vascular Institute", + "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/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", - "OrganizationName": "Metro Heart \u0026 Vascular Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88bd2aad-ffa6-49ab-a50c-52e5eea9048c", + "OrganizationName": "Behavioral Health Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -15697,14 +15493,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1149d0d1-b952-4371-8788-3a8b2c75da71", - "OrganizationName": "Good Health Clinic PLLC", + "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/1149d0d1-b952-4371-8788-3a8b2c75da71", - "OrganizationName": "Good Health Clinic PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", + "OrganizationName": "Metro Heart \u0026 Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, @@ -15745,14 +15541,14 @@ "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/1149d0d1-b952-4371-8788-3a8b2c75da71", + "OrganizationName": "Good Health Clinic PLLC", "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/1149d0d1-b952-4371-8788-3a8b2c75da71", + "OrganizationName": "Good Health Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15769,26 +15565,38 @@ "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/01461556-c695-42b1-b13e-db638642d0b6", + "OrganizationName": "Care In Transition", "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/01461556-c695-42b1-b13e-db638642d0b6", + "OrganizationName": "Care In Transition", "NPIID": "", "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/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", + "OrganizationName": "Bibb Addiction \u0026 Obesity Center", "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/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", + "OrganizationName": "Bibb Addiction \u0026 Obesity Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", + "OrganizationName": "ubah gaani Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15805,26 +15613,26 @@ "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/1343b38a-101a-4c0c-aea3-114546894de0", + "OrganizationName": "clarksville internal medicine", "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/1343b38a-101a-4c0c-aea3-114546894de0", + "OrganizationName": "clarksville internal medicine", "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/97e1d21a-edf4-4b7a-bc28-57067111f8fd", + "OrganizationName": "SHAHNAZ K. RAO, MDPA", "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/97e1d21a-edf4-4b7a-bc28-57067111f8fd", + "OrganizationName": "SHAHNAZ K. RAO, MDPA", "NPIID": "", "OrganizationZipCode": "" }, @@ -15853,38 +15661,38 @@ "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/f527ef98-4845-462d-a379-aa91fc089b33", + "OrganizationName": "Legacy Foot and Ankle Center", "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/f527ef98-4845-462d-a379-aa91fc089b33", + "OrganizationName": "Legacy Foot and Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", - "OrganizationName": "Clinica Medica De la Mora Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b808110-a041-4524-94f1-f232c6392c58", + "OrganizationName": "Remedy Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", - "OrganizationName": "Clinica Medica De la Mora Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b808110-a041-4524-94f1-f232c6392c58", + "OrganizationName": "Remedy Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f527ef98-4845-462d-a379-aa91fc089b33", - "OrganizationName": "Legacy Foot and Ankle Center", + "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/f527ef98-4845-462d-a379-aa91fc089b33", - "OrganizationName": "Legacy Foot and Ankle Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", + "OrganizationName": "Clinica Medica De la Mora Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -15901,26 +15709,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b808110-a041-4524-94f1-f232c6392c58", - "OrganizationName": "Remedy Healthcare LLC", + "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/9b808110-a041-4524-94f1-f232c6392c58", - "OrganizationName": "Remedy Healthcare LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/63a7f8c2-c702-485a-bfd0-8ac5141f5cd6", + "OrganizationName": "Hackensack Cardiology Associates", "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": "" }, @@ -15948,6 +15756,18 @@ "NPIID": "", "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/2f6b6373-864d-4b17-91d2-97ac382bcc71", "OrganizationName": "Clinica Hispana Shotwell", @@ -15984,42 +15804,6 @@ "NPIID": "", "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/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/92a64e34-b149-47ab-a503-b6671b5b8691", - "OrganizationName": "Northcoast Pain Management Associates,inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/92a64e34-b149-47ab-a503-b6671b5b8691", - "OrganizationName": "Northcoast Pain Management Associates,inc", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/043feab3-4a54-44fb-9877-12b4692ae14f", "OrganizationName": "Ethos Primary Care", @@ -16057,26 +15841,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f456344c-f7ac-4c89-830d-cedd6d2e9c6f", - "OrganizationName": "The Neighborhood Clinic", + "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/f456344c-f7ac-4c89-830d-cedd6d2e9c6f", - "OrganizationName": "The Neighborhood Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/92a64e34-b149-47ab-a503-b6671b5b8691", + "OrganizationName": "Northcoast Pain Management Associates,inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/657974ad-20bd-4f57-b91e-e911d05f84e3", - "OrganizationName": "Sarah Dubard Practice", + "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/657974ad-20bd-4f57-b91e-e911d05f84e3", - "OrganizationName": "Sarah Dubard Practice", + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f456344c-f7ac-4c89-830d-cedd6d2e9c6f", + "OrganizationName": "The Neighborhood Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -16093,26 +15889,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6fc4ced4-5b1c-49c8-9701-1162e387ecec", - "OrganizationName": "St. Luke Heart Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/657974ad-20bd-4f57-b91e-e911d05f84e3", + "OrganizationName": "Sarah Dubard Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6fc4ced4-5b1c-49c8-9701-1162e387ecec", - "OrganizationName": "St. Luke Heart Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/657974ad-20bd-4f57-b91e-e911d05f84e3", + "OrganizationName": "Sarah Dubard Practice", "NPIID": "", "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/6fc4ced4-5b1c-49c8-9701-1162e387ecec", + "OrganizationName": "St. Luke Heart Institute", "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/6fc4ced4-5b1c-49c8-9701-1162e387ecec", + "OrganizationName": "St. Luke Heart Institute", "NPIID": "", "OrganizationZipCode": "" }, @@ -16141,26 +15937,14 @@ "OrganizationZipCode": "" }, { - "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/97b33048-f57c-4246-955e-7549d14b0046", - "OrganizationName": "Jason Shimiaie MD PC", - "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/118dbc35-90f0-4dde-abec-be5c4b046319", + "OrganizationName": "NP Family Practice \u0026 Midwifery Care", "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/118dbc35-90f0-4dde-abec-be5c4b046319", + "OrganizationName": "NP Family Practice \u0026 Midwifery Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -16189,14 +15973,14 @@ "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/97b33048-f57c-4246-955e-7549d14b0046", + "OrganizationName": "Jason Shimiaie MD 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/97b33048-f57c-4246-955e-7549d14b0046", + "OrganizationName": "Jason Shimiaie MD PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16213,26 +15997,26 @@ "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/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", + "OrganizationName": "Pfitzner Family Psychiatric Care", "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/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", + "OrganizationName": "Pfitzner Family Psychiatric Care", "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/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "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/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "NPIID": "", "OrganizationZipCode": "" }, @@ -16273,14 +16057,26 @@ "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/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", "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/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/2f1d0e63-6744-40e3-bc46-dbb595589d90", + "OrganizationName": "Impact Psychiatric Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16296,6 +16092,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/1e22df4a-308d-4196-9ef9-afa4922cf33c", + "OrganizationName": "Roger D Ajluni PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", "OrganizationName": "Florida New Vision Inc", @@ -16320,6 +16128,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", + "OrganizationName": "Staton Southern Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/03f2fc8f-3dfc-497d-85de-13cfe68f2d91", "OrganizationName": "ALIEF GERIATRICS ASSOCIATES, P.A.", @@ -16356,18 +16176,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", - "OrganizationName": "Staton Southern Medical, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/392f4e7d-a83d-4967-a885-27c1c5c4ef7d", "OrganizationName": "Life Connect Medical", @@ -16392,30 +16200,6 @@ "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/1db54a70-0c25-49d4-a9f3-fb5c2b500220", - "OrganizationName": "MD \u0026 Wellness Center, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1db54a70-0c25-49d4-a9f3-fb5c2b500220", - "OrganizationName": "MD \u0026 Wellness Center, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", "OrganizationName": "Solheim Family Medicine", @@ -16429,14 +16213,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/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", "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/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", "NPIID": "", "OrganizationZipCode": "" }, @@ -16453,14 +16237,14 @@ "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/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", "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/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", "NPIID": "", "OrganizationZipCode": "" }, @@ -16477,50 +16261,38 @@ "OrganizationZipCode": "" }, { - "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/39e8be6d-7ab0-4930-8702-6346da54c0d3", - "OrganizationName": "Irvington TWP Rural Health Clinic", - "NPIID": "", - "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/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", "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/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", "NPIID": "", "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/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", + "OrganizationName": "Vivette Fletcher-Harriott Practice", "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/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", + "OrganizationName": "Vivette Fletcher-Harriott Practice", "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/39e8be6d-7ab0-4930-8702-6346da54c0d3", + "OrganizationName": "Irvington TWP Rural Health Clinic", "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/39e8be6d-7ab0-4930-8702-6346da54c0d3", + "OrganizationName": "Irvington TWP Rural Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -16549,62 +16321,62 @@ "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/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "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/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "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/e8c58100-a03b-47bb-935b-5a7dc50b6167", + "OrganizationName": "Roberto E Sanchez Practice", "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/e8c58100-a03b-47bb-935b-5a7dc50b6167", + "OrganizationName": "Roberto E Sanchez Practice", "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/c3538334-4dcc-487e-9e87-c010023245f1", + "OrganizationName": "Dr Richard David Griffith", "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/c3538334-4dcc-487e-9e87-c010023245f1", + "OrganizationName": "Dr Richard David Griffith", "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/ce1b7a7c-b312-423e-b371-b94701c537f0", + "OrganizationName": "DocNetwork, Inc", "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/ce1b7a7c-b312-423e-b371-b94701c537f0", + "OrganizationName": "DocNetwork, Inc", "NPIID": "", "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/c8f92d55-ee48-4298-838e-c206ac0d4136", + "OrganizationName": "Dr Lees Medical Associates", "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/c8f92d55-ee48-4298-838e-c206ac0d4136", + "OrganizationName": "Dr Lees Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -16621,50 +16393,50 @@ "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/0f55b49a-2d16-4671-8f1f-aac8eacca057", + "OrganizationName": "Boden Health System", "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/0f55b49a-2d16-4671-8f1f-aac8eacca057", + "OrganizationName": "Boden Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", - "OrganizationName": "Tranquility Psychiatry and Counseling Services", + "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/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", - "OrganizationName": "Tranquility Psychiatry and Counseling Services", + "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/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", - "OrganizationName": "Starting New Collaborative, LLC", + "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/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", - "OrganizationName": "Starting New Collaborative, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", + "OrganizationName": "Michelle Klein Practice", "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/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", + "OrganizationName": "Margaret N Alexander MD PC", "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/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", + "OrganizationName": "Margaret N Alexander MD PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16692,18 +16464,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/143a1716-fa7a-48e7-b70b-dbb8ec113f1a", "OrganizationName": "Greenlake Primary Care", @@ -16765,74 +16525,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", - "OrganizationName": "Hearne Family 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/b9e371f5-b802-4656-827c-c794e5464dd8", - "OrganizationName": "Hearne Family 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/8c392a5e-fed0-42ac-bf9d-448967efa2a7", - "OrganizationName": "Nader Doctors", + "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/8c392a5e-fed0-42ac-bf9d-448967efa2a7", - "OrganizationName": "Nader Doctors", + "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/232f32cb-7543-46eb-8b8b-02c6071906b0", - "OrganizationName": "John Casada 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/232f32cb-7543-46eb-8b8b-02c6071906b0", - "OrganizationName": "John Casada 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/71effef3-941e-4d28-a38a-ba9f2edda332", - "OrganizationName": "Mercy Family Medicine and Wellness Center (Shelley Roby NP)", + "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/71effef3-941e-4d28-a38a-ba9f2edda332", - "OrganizationName": "Mercy Family Medicine and Wellness Center (Shelley Roby NP)", + "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/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/e72271c2-49c3-441a-912c-b79555382281", - "OrganizationName": "Frame Internal Medicine Group PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/232f32cb-7543-46eb-8b8b-02c6071906b0", + "OrganizationName": "John Casada 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/232f32cb-7543-46eb-8b8b-02c6071906b0", + "OrganizationName": "John Casada Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/71effef3-941e-4d28-a38a-ba9f2edda332", + "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": "Mercy Family Medicine and Wellness Center (Shelley Roby NP)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/6e1efa61-cedf-433f-b1f5-de6b45b7f6a1", + "OrganizationName": "Arbi Khodadadi Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16885,38 +16669,38 @@ "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/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "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/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "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/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", + "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", "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/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", + "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", "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/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "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/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16968,30 +16752,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/4d30d53f-b69b-4922-ba6c-d5306587cd89", - "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/43f9133c-ddd8-4485-a931-71c5b3e2c55e", - "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4d219d58-593d-4939-961e-8006993e7094", "OrganizationName": "MICHAEL BISHAI MD LLC", @@ -17041,26 +16801,38 @@ "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/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "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/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "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/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", "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/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", + "NPIID": "", + "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": "" }, @@ -17100,6 +16872,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/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.", @@ -17125,26 +16909,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a9d8f34-05bf-444b-b826-ffc0270ae8ed", - "OrganizationName": "Dr. Maryam Ardalan", + "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/0a9d8f34-05bf-444b-b826-ffc0270ae8ed", - "OrganizationName": "Dr. Maryam Ardalan", + "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/54f0fc91-b096-456d-87f3-5425610e5e50", - "OrganizationName": "The Sanctuary", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a9d8f34-05bf-444b-b826-ffc0270ae8ed", + "OrganizationName": "Dr. Maryam Ardalan", "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/0a9d8f34-05bf-444b-b826-ffc0270ae8ed", + "OrganizationName": "Dr. Maryam Ardalan", "NPIID": "", "OrganizationZipCode": "" }, @@ -17161,122 +16945,122 @@ "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/92bbad28-829e-4ca8-9c1e-513a632e1a1b", - "OrganizationName": "Macey Min Chu Luo Souza", + "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/92bbad28-829e-4ca8-9c1e-513a632e1a1b", - "OrganizationName": "Macey Min Chu Luo Souza", + "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/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", + "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/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", + "OrganizationName": "Mount pleasant medical associates", "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/92bbad28-829e-4ca8-9c1e-513a632e1a1b", + "OrganizationName": "Macey Min Chu Luo Souza", "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/92bbad28-829e-4ca8-9c1e-513a632e1a1b", + "OrganizationName": "Macey Min Chu Luo Souza", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0079202c-f0b0-4ea6-891f-9e3f57cd3d35", - "OrganizationName": "Minnesota Behavioral Health", + "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/0079202c-f0b0-4ea6-891f-9e3f57cd3d35", - "OrganizationName": "Minnesota Behavioral Health", + "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/9e055ff7-1598-4bfa-9f87-4d108af37ff8", - "OrganizationName": "Medical Anti-Aging LLC", + "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/9e055ff7-1598-4bfa-9f87-4d108af37ff8", - "OrganizationName": "Medical Anti-Aging LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", + "OrganizationName": "Rodom", "NPIID": "", "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/0079202c-f0b0-4ea6-891f-9e3f57cd3d35", + "OrganizationName": "Minnesota Behavioral Health", "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/0079202c-f0b0-4ea6-891f-9e3f57cd3d35", + "OrganizationName": "Minnesota Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0983a43e-9fb0-4f3d-8681-f5838587c946", - "OrganizationName": "Southwest Family Clinic PC", + "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/0983a43e-9fb0-4f3d-8681-f5838587c946", - "OrganizationName": "Southwest Family Clinic PC", + "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/7162ce38-67e3-4212-9763-133ff86587fb", - "OrganizationName": "Long Island Infectious Disease Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0983a43e-9fb0-4f3d-8681-f5838587c946", + "OrganizationName": "Southwest Family Clinic PC", "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/0983a43e-9fb0-4f3d-8681-f5838587c946", + "OrganizationName": "Southwest Family Clinic PC", "NPIID": "", "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": "" }, @@ -17304,6 +17088,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/088016fc-b29b-42fc-9abe-e8590a5a7744", "OrganizationName": "Amerihealth Group", @@ -17328,6 +17124,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/75e9016d-ae7b-4324-84d9-0e700c917c5f", + "OrganizationName": "DOCTORS OF INTERNAL MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/eed14848-aab2-4c95-8efa-dca1c2704b5a", "OrganizationName": "One 2 Wellness Family \u0026 Obesity Medicine", @@ -17353,62 +17161,62 @@ "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/a89181f1-c777-4b96-af90-8bd719fde450", + "OrganizationName": "Jan Hamilton Practice", "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/a89181f1-c777-4b96-af90-8bd719fde450", + "OrganizationName": "Jan Hamilton Practice", "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/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "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/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "NPIID": "", "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/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "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/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "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/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "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/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "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/51f9d969-3a58-47fb-8370-bb12875c02e2", + "OrganizationName": "Genesee Lung Associates", "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/51f9d969-3a58-47fb-8370-bb12875c02e2", + "OrganizationName": "Genesee Lung Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -17437,38 +17245,38 @@ "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/eafe7e5a-5968-4056-b940-fed3865676d1", + "OrganizationName": "Assess Hawaii", "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/eafe7e5a-5968-4056-b940-fed3865676d1", + "OrganizationName": "Assess Hawaii", "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/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "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/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "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/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", "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/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -17497,38 +17305,14 @@ "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/f8daa612-95ae-49d6-a417-a5f86272000a", - "OrganizationName": "Ivan Figueroa Practice", + "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/f8daa612-95ae-49d6-a417-a5f86272000a", - "OrganizationName": "Ivan Figueroa Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/729247c8-c850-44c6-9e8f-27ba6a164843", + "OrganizationName": "Women's Preventive Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -17545,26 +17329,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0e810404-3513-46d4-9795-c254cc20b47a", - "OrganizationName": "Pisgah Medical clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0e810404-3513-46d4-9795-c254cc20b47a", - "OrganizationName": "Pisgah Medical clinic", - "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/f8daa612-95ae-49d6-a417-a5f86272000a", + "OrganizationName": "Ivan Figueroa Practice", "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/f8daa612-95ae-49d6-a417-a5f86272000a", + "OrganizationName": "Ivan Figueroa Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -17581,14 +17353,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0e810404-3513-46d4-9795-c254cc20b47a", + "OrganizationName": "Pisgah Medical clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0e810404-3513-46d4-9795-c254cc20b47a", + "OrganizationName": "Pisgah Medical clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -17629,26 +17401,26 @@ "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/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", "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/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9f75b27f-c7ee-44d9-ab68-2279da9d3129", - "OrganizationName": "Sharad Sahu MD", + "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/9f75b27f-c7ee-44d9-ab68-2279da9d3129", - "OrganizationName": "Sharad Sahu MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", + "OrganizationName": "Arkham Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -17664,6 +17436,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9f75b27f-c7ee-44d9-ab68-2279da9d3129", + "OrganizationName": "Sharad Sahu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9f75b27f-c7ee-44d9-ab68-2279da9d3129", + "OrganizationName": "Sharad Sahu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ed1f01b7-9562-452c-8027-60a4b39fca82", "OrganizationName": "PREMIER CLINICS PA", @@ -17760,18 +17544,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d02ee83-d4f8-4988-9f5b-d623c8cfec84", - "OrganizationName": "Angel Family Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d02ee83-d4f8-4988-9f5b-d623c8cfec84", - "OrganizationName": "Angel Family Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", @@ -17785,26 +17557,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb79d2b-c222-4c34-ac8d-39fd38104829", - "OrganizationName": "Vital Options PLLC", + "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/ffb79d2b-c222-4c34-ac8d-39fd38104829", - "OrganizationName": "Vital Options PLLC", + "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/d85967c0-f3bd-4425-bfd7-a2486c18c57b", - "OrganizationName": "Apex Medical, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d02ee83-d4f8-4988-9f5b-d623c8cfec84", + "OrganizationName": "Angel Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d85967c0-f3bd-4425-bfd7-a2486c18c57b", - "OrganizationName": "Apex Medical, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d02ee83-d4f8-4988-9f5b-d623c8cfec84", + "OrganizationName": "Angel Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -17844,6 +17616,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb79d2b-c222-4c34-ac8d-39fd38104829", + "OrganizationName": "Vital Options PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffb79d2b-c222-4c34-ac8d-39fd38104829", + "OrganizationName": "Vital Options PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", "OrganizationName": "Domi Healthcare", @@ -17893,38 +17677,38 @@ "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/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "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/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "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/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "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/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "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/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "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/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -17965,26 +17749,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/81b4be42-b5da-46ce-b9b4-2dabf0779d60", - "OrganizationName": "Cua and Gan Medical Corporation", + "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/81b4be42-b5da-46ce-b9b4-2dabf0779d60", - "OrganizationName": "Cua and Gan Medical Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", + "OrganizationName": "Nevada Always Your Doctor LLC", "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/81b4be42-b5da-46ce-b9b4-2dabf0779d60", + "OrganizationName": "Cua and Gan Medical Corporation", "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/81b4be42-b5da-46ce-b9b4-2dabf0779d60", + "OrganizationName": "Cua and Gan Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, @@ -18036,18 +17820,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/b4340d6b-f457-46ca-b883-9b05f0214bd6", - "OrganizationName": "Rejuvenation Skin Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", "OrganizationName": "Cape Diabetes and Endocrinology PLLC", @@ -18084,18 +17856,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/5956677c-3838-453d-8def-d4cba9779745", - "OrganizationName": "EB Consulting PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", "OrganizationName": "Alan Tony Amberg PLLC", @@ -18109,14 +17869,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1a2970cf-d00d-44ad-b9bd-2a873c2240a4", - "OrganizationName": "Islip Family Practice", + "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/1a2970cf-d00d-44ad-b9bd-2a873c2240a4", - "OrganizationName": "Islip Family Practice", + "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/5956677c-3838-453d-8def-d4cba9779745", + "OrganizationName": "EB Consulting PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5956677c-3838-453d-8def-d4cba9779745", + "OrganizationName": "EB Consulting PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1a2970cf-d00d-44ad-b9bd-2a873c2240a4", + "OrganizationName": "Islip Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1a2970cf-d00d-44ad-b9bd-2a873c2240a4", + "OrganizationName": "Islip Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18145,26 +17929,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/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "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/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eef78bcb-1edc-43e6-acd5-cea8201162c8", + "OrganizationName": "Courtney Hunter ARNP", "NPIID": "", "OrganizationZipCode": "" }, @@ -18193,26 +17977,26 @@ "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": "" }, { - "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": "" }, @@ -18241,14 +18025,14 @@ "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/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "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/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "NPIID": "", "OrganizationZipCode": "" }, @@ -18265,14 +18049,26 @@ "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/68d22a68-5cac-4d54-a443-fbfc3252faa5", + "OrganizationName": "UW Health System", "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/68d22a68-5cac-4d54-a443-fbfc3252faa5", + "OrganizationName": "UW Health System", + "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": "" }, @@ -18289,26 +18085,26 @@ "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/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", + "OrganizationName": "Myndpath Psychiatry and Medical Associates", "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/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", + "OrganizationName": "Myndpath Psychiatry and Medical Associates", "NPIID": "", "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/16149c08-97a5-4d00-85ee-f9a62ac1d239", + "OrganizationName": "Quality Care Access, PLLC", "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/16149c08-97a5-4d00-85ee-f9a62ac1d239", + "OrganizationName": "Quality Care Access, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18325,26 +18121,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/d961a856-884b-4e47-93fc-c107599e9300", + "OrganizationName": "Rahul Patel DPM", "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/d961a856-884b-4e47-93fc-c107599e9300", + "OrganizationName": "Rahul Patel DPM", "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/46d2f08b-3200-4400-ab8a-b0c3b69423e8", + "OrganizationName": "Indiana Exceptional Medical Care", "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/46d2f08b-3200-4400-ab8a-b0c3b69423e8", + "OrganizationName": "Indiana Exceptional Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -18361,14 +18157,14 @@ "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/415cf738-c643-4cf5-985c-fd6094cb6627", + "OrganizationName": "Humane Care 7 Days Medical Group, Inc", "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/415cf738-c643-4cf5-985c-fd6094cb6627", + "OrganizationName": "Humane Care 7 Days Medical Group, Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -18385,26 +18181,26 @@ "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": "" }, { - "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/9ddc42ff-1899-43bb-9940-c970ff69e928", + "OrganizationName": "Main Medical Health Clinic 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/9ddc42ff-1899-43bb-9940-c970ff69e928", + "OrganizationName": "Main Medical Health Clinic Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -18433,14 +18229,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9ddc42ff-1899-43bb-9940-c970ff69e928", - "OrganizationName": "Main Medical Health Clinic Inc", + "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/9ddc42ff-1899-43bb-9940-c970ff69e928", - "OrganizationName": "Main Medical Health Clinic Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", + "OrganizationName": "Allure Health and Beauty", "NPIID": "", "OrganizationZipCode": "" }, @@ -18457,38 +18253,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd1179de-9731-4242-8087-c30c7e0e4e42", - "OrganizationName": "Clinica Latina Familiar 2 LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "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/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", - "OrganizationName": "Allure Health and Beauty", + "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/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", - "OrganizationName": "Allure Health and Beauty", + "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/2167f932-b2ed-47ee-94d9-992ec2186a88", - "OrganizationName": "Samimi Orthopedic Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd1179de-9731-4242-8087-c30c7e0e4e42", + "OrganizationName": "Clinica Latina Familiar 2 LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", - "OrganizationName": "Samimi Orthopedic Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd1179de-9731-4242-8087-c30c7e0e4e42", + "OrganizationName": "Clinica Latina Familiar 2 LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18516,18 +18300,6 @@ "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/78b38b08-d212-47ce-83cc-2af90ee6736d", "OrganizationName": "Better Years Ahead Medical Center", @@ -18553,26 +18325,26 @@ "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/a57aea8b-ad22-42cd-99ec-30743b6b74c2", + "OrganizationName": "Urban Community physicians Network", "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/a57aea8b-ad22-42cd-99ec-30743b6b74c2", + "OrganizationName": "Urban Community physicians Network", "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/75e9eb9a-ae5a-4cc0-8946-417b4328ea13", + "OrganizationName": "Robert Baklajian MD", "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/75e9eb9a-ae5a-4cc0-8946-417b4328ea13", + "OrganizationName": "Robert Baklajian MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -18588,6 +18360,18 @@ "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", @@ -18600,6 +18384,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/337c6cf4-4ba8-453e-bef4-435e0feb1a32", "OrganizationName": "Thomas B Faulkner, MD, AME", @@ -18614,61 +18410,61 @@ }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bc4fac9e-053e-43f7-999a-e828f3940d81", - "OrganizationName": "KIDNEY CARE ASSOCIATES", + "OrganizationName": "Kidney Care Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/bc4fac9e-053e-43f7-999a-e828f3940d81", - "OrganizationName": "KIDNEY CARE ASSOCIATES", + "OrganizationName": "Kidney Care Associates", "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/d120da39-ed17-4ad1-873f-fbd23bd6c32f", + "OrganizationName": "Chandra Shekar, M.D.", "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/d120da39-ed17-4ad1-873f-fbd23bd6c32f", + "OrganizationName": "Chandra Shekar, M.D.", "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/243b9a19-0731-499f-a36e-f36deabbee23", + "OrganizationName": "Tisa Morris-Christian, M.D., MPH", "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/243b9a19-0731-499f-a36e-f36deabbee23", + "OrganizationName": "Tisa Morris-Christian, M.D., MPH", "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/53d08ab7-fd47-400d-a45c-035ad902f80f", + "OrganizationName": "Narsimha Gottam, M.D., F.A.C.C.", "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/53d08ab7-fd47-400d-a45c-035ad902f80f", + "OrganizationName": "Narsimha Gottam, M.D., F.A.C.C.", "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/bcaaf9a0-8087-412c-971d-d6cfca42bc32", + "OrganizationName": "J'Essential Health \u0026 Wellness LLC", "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/bcaaf9a0-8087-412c-971d-d6cfca42bc32", + "OrganizationName": "J'Essential Health \u0026 Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18684,30 +18480,6 @@ "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", @@ -18744,18 +18516,6 @@ "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", @@ -18793,14 +18553,14 @@ "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/e54c7436-7ea7-4685-bbd8-750cda14e19c", + "OrganizationName": "John E. Rivera Jr. Practice", "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/e54c7436-7ea7-4685-bbd8-750cda14e19c", + "OrganizationName": "John E. Rivera Jr. Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18841,14 +18601,14 @@ "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/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", "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/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", "NPIID": "", "OrganizationZipCode": "" }, @@ -18864,6 +18624,18 @@ "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", @@ -18901,50 +18673,50 @@ "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/1dc8df89-b3b5-4391-8e58-76fcf8417c8b", + "OrganizationName": "Bazzi Podiatry, PLLC", "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/1dc8df89-b3b5-4391-8e58-76fcf8417c8b", + "OrganizationName": "Bazzi Podiatry, PLLC", "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/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", + "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", "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/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", + "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", "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/1c6c34ad-2c09-4aac-8ca6-3f6ccbc59260", + "OrganizationName": "Symbios Integrative Health", "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/1c6c34ad-2c09-4aac-8ca6-3f6ccbc59260", + "OrganizationName": "Symbios Integrative Health", "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/5f098b1a-5bfe-4061-b4d3-fdbb2478bd99", + "OrganizationName": "GBMC Health Partners", "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/5f098b1a-5bfe-4061-b4d3-fdbb2478bd99", + "OrganizationName": "GBMC Health Partners", "NPIID": "", "OrganizationZipCode": "" }, @@ -18972,18 +18744,6 @@ "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/4bf9379d-22e8-4130-96f7-9571ef1b21ca", "OrganizationName": "Jay Medical, PLLC", @@ -18997,14 +18757,14 @@ "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/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", "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/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", "NPIID": "", "OrganizationZipCode": "" }, @@ -19032,6 +18792,18 @@ "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", @@ -19068,18 +18840,6 @@ "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", @@ -19321,26 +19081,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", + "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/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", + "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/46d6e659-42d9-4b85-b232-3c44a0f972ae", - "OrganizationName": "Mansi Mehta Practice", + "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/46d6e659-42d9-4b85-b232-3c44a0f972ae", - "OrganizationName": "Mansi Mehta Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", + "OrganizationName": "Kendall South Medical Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -19357,26 +19117,26 @@ "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/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", "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/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", "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/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", "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/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -19405,14 +19165,14 @@ "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/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", "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/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19429,38 +19189,26 @@ "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/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "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/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "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/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", + "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/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/104ca69e-d123-447c-a758-2862ace1b3cc", + "OrganizationName": "Ariel Goitia", "NPIID": "", "OrganizationZipCode": "" }, @@ -19477,38 +19225,38 @@ "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/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", "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/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", "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/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", "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/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", "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/e8f3465f-7865-45cc-bc82-5a6b6bbab92c", + "OrganizationName": "Evolve Medical Aesthetics and Wellness", "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/e8f3465f-7865-45cc-bc82-5a6b6bbab92c", + "OrganizationName": "Evolve Medical Aesthetics and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -19525,14 +19273,14 @@ "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/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", "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/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", "NPIID": "", "OrganizationZipCode": "" }, @@ -19560,18 +19308,6 @@ "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.", @@ -19585,26 +19321,26 @@ "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/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", "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/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", "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/557d22c5-9b39-4ca8-8abb-6b24069f8703", + "OrganizationName": "GRACE GALLOWAY", "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/557d22c5-9b39-4ca8-8abb-6b24069f8703", + "OrganizationName": "GRACE GALLOWAY", "NPIID": "", "OrganizationZipCode": "" }, @@ -19620,18 +19356,6 @@ "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/6a59c3e1-605f-42c2-aa8f-221616634244", "OrganizationName": "Boston Facial Plastic Surgery", @@ -19681,122 +19405,122 @@ "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/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", "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/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", "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/9e6e6970-6b6b-4564-8bc3-9821434db8c2", + "OrganizationName": "LIFE REIMAGINED LLC", "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/9e6e6970-6b6b-4564-8bc3-9821434db8c2", + "OrganizationName": "LIFE REIMAGINED LLC", "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/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", "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/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", "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/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", "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/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e6e6970-6b6b-4564-8bc3-9821434db8c2", - "OrganizationName": "LIFE REIMAGINED LLC", + "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/9e6e6970-6b6b-4564-8bc3-9821434db8c2", - "OrganizationName": "LIFE REIMAGINED LLC", + "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/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "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/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "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/51b412f6-4abf-4535-b1e4-71c901a1bb72", - "OrganizationName": "New Face MD", + "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/51b412f6-4abf-4535-b1e4-71c901a1bb72", - "OrganizationName": "New Face MD", + "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/7ead8ab5-de89-4800-ac42-0d06e48931e3", - "OrganizationName": "Jonathan Chan Practice", + "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/7ead8ab5-de89-4800-ac42-0d06e48931e3", - "OrganizationName": "Jonathan Chan Practice", + "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/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "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/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "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/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "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/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ead8ab5-de89-4800-ac42-0d06e48931e3", + "OrganizationName": "Jonathan Chan Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -19825,14 +19549,14 @@ "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": "" }, @@ -19861,14 +19585,14 @@ "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/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", "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/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -19885,26 +19609,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)", - "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/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "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/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b8d8e8d-c02e-4089-8461-a05227fe11fb", + "OrganizationName": "Sherill L. Purcell, M.D., FAAP", "NPIID": "", "OrganizationZipCode": "" }, @@ -19920,18 +19632,6 @@ "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/e83970d8-827e-47d5-981f-ecaa707bb201", "OrganizationName": "BRUSH COUNTRY MEDICAL P.L.L.C.", @@ -19945,74 +19645,62 @@ "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/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "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/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "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/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", + "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/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", + "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/2e529905-ad30-4040-9515-7c7ca0922cd7", - "OrganizationName": "Lee Internal Medicine Associates PLLC", + "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/2e529905-ad30-4040-9515-7c7ca0922cd7", - "OrganizationName": "Lee Internal Medicine Associates PLLC", + "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/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "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/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "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/db626e4d-f15b-49e4-a053-1755cada58ec", - "OrganizationName": "JAXSENS WELLNESS CENTER", + "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/db626e4d-f15b-49e4-a053-1755cada58ec", - "OrganizationName": "JAXSENS WELLNESS CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e529905-ad30-4040-9515-7c7ca0922cd7", + "OrganizationName": "Lee Internal Medicine Associates PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20041,14 +19729,14 @@ "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/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", "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/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", "NPIID": "", "OrganizationZipCode": "" }, @@ -20065,86 +19753,86 @@ "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/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", "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/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", "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/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", "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/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", "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/db626e4d-f15b-49e4-a053-1755cada58ec", + "OrganizationName": "JAXSENS WELLNESS CENTER", "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/db626e4d-f15b-49e4-a053-1755cada58ec", + "OrganizationName": "JAXSENS WELLNESS CENTER", "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/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", "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/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", "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/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", + "OrganizationName": "Berks Diabetes Management, LLC", "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/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", + "OrganizationName": "Berks Diabetes Management, LLC", "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/d62721b7-3a40-4f6f-9f1c-9feb3e5a6496", + "OrganizationName": "True Physician Care, 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/d62721b7-3a40-4f6f-9f1c-9feb3e5a6496", + "OrganizationName": "True Physician Care, LLC", "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/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", "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/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -20161,50 +19849,74 @@ "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/e7798675-b9b8-454a-a2d3-d299bd36a1d5", + "OrganizationName": "Medical House Call Associates", "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/e7798675-b9b8-454a-a2d3-d299bd36a1d5", + "OrganizationName": "Medical House Call Associates", "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/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", "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/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", "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/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", "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/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", "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/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", + "OrganizationName": "Riant Health Services, PLLC", "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/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/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": "" }, @@ -20232,6 +19944,18 @@ "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/7e3ba7d2-7731-47ac-8056-4af211641d1c", "OrganizationName": "East-West Institute for Health and Research LLC", @@ -20245,14 +19969,14 @@ "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/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative 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/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -20269,14 +19993,14 @@ "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": "" }, @@ -20292,6 +20016,18 @@ "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/89e5c643-638a-484d-b2e5-3bd5e908850e", "OrganizationName": "Noe Marioni, MD", @@ -20340,6 +20076,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/03f7ba9c-aa47-4991-9128-f55681e00780", "OrganizationName": "Divine Medical Associates", @@ -20401,14 +20149,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/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/dcfe66f3-b066-467a-a23c-6982fa2e541f", - "OrganizationName": "Clinical Bridges", + "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": "" }, @@ -20436,18 +20184,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/313bce9a-02f0-470e-9b8d-513928a1553f", "OrganizationName": "The Case Clinic", @@ -20460,18 +20196,6 @@ "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", @@ -20485,26 +20209,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2357a25e-0d04-4639-b459-aa16b919552e", - "OrganizationName": "Cognitive Works, PLLC", + "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/2357a25e-0d04-4639-b459-aa16b919552e", - "OrganizationName": "Cognitive Works, PLLC", + "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/329f3a39-b5be-4231-b2ac-7c2418bdba44", - "OrganizationName": "Phoenix Eye Group", + "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/329f3a39-b5be-4231-b2ac-7c2418bdba44", - "OrganizationName": "Phoenix Eye Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fff873eb-3f9b-4d95-87bf-d40da90879fe", + "OrganizationName": "Nightwater Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20521,14 +20245,14 @@ "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/2357a25e-0d04-4639-b459-aa16b919552e", + "OrganizationName": "Cognitive Works, PLLC", "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/2357a25e-0d04-4639-b459-aa16b919552e", + "OrganizationName": "Cognitive Works, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20544,6 +20268,18 @@ "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", @@ -20592,6 +20328,30 @@ "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/872b7760-35f6-48d9-83fe-d16321ad414c", "OrganizationName": "Pinnacle Primary Care PLLC", @@ -20641,26 +20401,14 @@ "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/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "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/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", + "OrganizationName": "Sanctuary Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20677,14 +20425,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", - "OrganizationName": "Sanctuary Health, LLC", + "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/34546f6f-30a7-4387-af94-35cbf6eb4ee7", - "OrganizationName": "Sanctuary Health, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", + "OrganizationName": "Trinity Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -20701,26 +20449,26 @@ "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/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", "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/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", "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/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", "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/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", "NPIID": "", "OrganizationZipCode": "" }, @@ -20761,14 +20509,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/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", "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/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -20797,38 +20545,38 @@ "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/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", "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/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", "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/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", "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/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", "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/7d986dbe-522f-41e9-a495-d6bdf48dbf6f", + "OrganizationName": "Priority Healthcare and Weight Loss", "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/7d986dbe-522f-41e9-a495-d6bdf48dbf6f", + "OrganizationName": "Priority Healthcare and Weight Loss", "NPIID": "", "OrganizationZipCode": "" }, @@ -20868,18 +20616,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/d26b614f-8663-4761-8d2a-93ab726960e3", "OrganizationName": "Mindful Psychiatry", @@ -20905,26 +20641,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad388eea-5dfb-4d0c-9cca-c18ffb1a66ad", - "OrganizationName": "Medina Healthcare", + "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/ad388eea-5dfb-4d0c-9cca-c18ffb1a66ad", - "OrganizationName": "Medina Healthcare", + "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/f5cc35e6-b940-4494-91de-b09394c38e83", - "OrganizationName": "Headwaters Restoration Therapy", + "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/f5cc35e6-b940-4494-91de-b09394c38e83", - "OrganizationName": "Headwaters Restoration Therapy", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad388eea-5dfb-4d0c-9cca-c18ffb1a66ad", + "OrganizationName": "Medina Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -20977,50 +20713,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", - "OrganizationName": "Miami Spine and wellness center", + "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/865bc060-05fb-4afe-9d27-1dc5f0de3b18", - "OrganizationName": "Miami Spine and wellness center", + "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/33dcb1bf-6f7e-495d-8bde-335ae49e9e1b", - "OrganizationName": "Allyson Witters Cundiff, MD", + "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/33dcb1bf-6f7e-495d-8bde-335ae49e9e1b", - "OrganizationName": "Allyson Witters Cundiff, MD", + "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/83f83901-7180-40e2-ac19-aa8516ddc366", - "OrganizationName": "247 Urgent Care", + "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/83f83901-7180-40e2-ac19-aa8516ddc366", - "OrganizationName": "247 Urgent Care", + "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/39f26eee-4815-4064-ab68-b1b0eeb0e78a", - "OrganizationName": "Richard Kaiser 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/39f26eee-4815-4064-ab68-b1b0eeb0e78a", - "OrganizationName": "Richard Kaiser MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", + "OrganizationName": "247 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21084,6 +20820,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/b5c981f5-1d78-4b7a-a8a7-5d6c1d838d11", + "OrganizationName": "MediMind Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1c47242f-fef1-4f65-86c2-29e2a643129f", "OrganizationName": "The Newlove Nurtury", @@ -21109,14 +20857,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b5c981f5-1d78-4b7a-a8a7-5d6c1d838d11", - "OrganizationName": "MediMind Solutions", + "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/b5c981f5-1d78-4b7a-a8a7-5d6c1d838d11", - "OrganizationName": "MediMind Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3729c4e-e837-4875-8bfd-d1481b266071", + "OrganizationName": "South Jersey Pediatric Gastroenterology, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21133,14 +20881,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c3729c4e-e837-4875-8bfd-d1481b266071", - "OrganizationName": "South Jersey Pediatric Gastroenterology, 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/c3729c4e-e837-4875-8bfd-d1481b266071", - "OrganizationName": "South Jersey Pediatric Gastroenterology, 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/debd8ddf-493e-45ad-b262-43ac4e261e48", + "OrganizationName": "Omega Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/debd8ddf-493e-45ad-b262-43ac4e261e48", + "OrganizationName": "Omega Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -21157,38 +20917,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/debd8ddf-493e-45ad-b262-43ac4e261e48", - "OrganizationName": "Omega Family Clinic", + "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/debd8ddf-493e-45ad-b262-43ac4e261e48", - "OrganizationName": "Omega Family Clinic", + "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", + "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/2fe68f06-bd4a-4cc4-b68f-a0a70a93384f", - "OrganizationName": "Westside Medical Care Inc", + "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/3900e50e-600f-4a22-9942-7b27764a520c", - "OrganizationName": "Perry Stein Practice", + "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/3900e50e-600f-4a22-9942-7b27764a520c", - "OrganizationName": "Perry Stein Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", + "OrganizationName": "Mikhail Novikov MD PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21216,18 +20976,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/a671a8d9-bf48-4c77-a785-6e702c20e680", - "OrganizationName": "GREYSI TAMAYO GONZALEZ", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2b1442e3-d4d4-437b-bac9-94dec4ac133b", "OrganizationName": "Total Family Clinic", @@ -21241,14 +20989,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/7092dff3-644f-43a7-a1fd-590e496d7e73", + "OrganizationName": "Sunridge Medical", "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/7092dff3-644f-43a7-a1fd-590e496d7e73", + "OrganizationName": "Sunridge Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -21264,18 +21012,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "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/7092dff3-644f-43a7-a1fd-590e496d7e73", - "OrganizationName": "Sunridge Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/dd0e6bb7-0a73-48d0-8728-75853f97cef7", "OrganizationName": "Mark Markland, NP IN Family Health PC", @@ -21337,26 +21073,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/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", - "OrganizationName": "BAY HEALTHCARE LLC", + "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/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", - "OrganizationName": "BAY HEALTHCARE LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", + "OrganizationName": "PRIMARY HOMECARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21373,26 +21097,26 @@ "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/1f169e9b-3e59-4564-9985-b38fb076f5c6", - "OrganizationName": "Frederick CustomEyez Prosthetics LLC", + "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/1f169e9b-3e59-4564-9985-b38fb076f5c6", - "OrganizationName": "Frederick CustomEyez Prosthetics LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", + "OrganizationName": "BAY HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21408,6 +21132,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/1f169e9b-3e59-4564-9985-b38fb076f5c6", + "OrganizationName": "Frederick CustomEyez Prosthetics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a6145ddb-3bcb-4f3f-9010-af290948bdf4", "OrganizationName": "Francisca Ojei Practice", @@ -21457,26 +21193,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", - "OrganizationName": "MED with Love, pllc", + "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/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", - "OrganizationName": "MED with Love, pllc", + "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/b8b18495-44c5-446b-a40d-02d7e93c6923", - "OrganizationName": "Weingarten medical offices", + "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/b8b18495-44c5-446b-a40d-02d7e93c6923", - "OrganizationName": "Weingarten medical offices", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", + "OrganizationName": "MED with Love, pllc", "NPIID": "", "OrganizationZipCode": "" }, @@ -21516,6 +21252,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", + "OrganizationName": "Peachtree Family Psychiatry Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/26dedc49-c582-4d11-8eb6-32b60f985a18", "OrganizationName": "Gentle Birth Options, LLC", @@ -21541,14 +21289,14 @@ "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/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "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/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -21565,38 +21313,38 @@ "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/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "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/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fca3d5c7-08eb-4c42-856c-560e9aed82e0", - "OrganizationName": "Imperial Care Internal Medicine", + "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/fca3d5c7-08eb-4c42-856c-560e9aed82e0", - "OrganizationName": "Imperial Care Internal Medicine", + "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/7173322e-c250-4a95-acad-15d4d2941b96", - "OrganizationName": "Hawley Psychiatric", + "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/7173322e-c250-4a95-acad-15d4d2941b96", - "OrganizationName": "Hawley Psychiatric", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fca3d5c7-08eb-4c42-856c-560e9aed82e0", + "OrganizationName": "Imperial Care Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -21613,14 +21361,14 @@ "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/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", "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/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21636,18 +21384,6 @@ "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": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ac46cf40-c5fb-4af1-aa87-798f326bfcfa", "OrganizationName": "Washington Foot and Ankle", @@ -21673,74 +21409,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1cad7864-3457-454e-9b44-1db77ddcbd05", - "OrganizationName": "AveMaria Family Practice", + "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/1cad7864-3457-454e-9b44-1db77ddcbd05", - "OrganizationName": "AveMaria Family Practice", + "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/33e61cfc-9e26-4818-ac72-efe3944db24d", - "OrganizationName": "Professional Care Solutions LLC", + "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/33e61cfc-9e26-4818-ac72-efe3944db24d", - "OrganizationName": "Professional Care Solutions LLC", + "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/41e258b7-6d5a-464b-b9ea-ffa2757981db", - "OrganizationName": "Abel Quinones Practice", + "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/41e258b7-6d5a-464b-b9ea-ffa2757981db", - "OrganizationName": "Abel Quinones Practice", + "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/16ea5a91-19bd-4984-ae06-403387a23542", - "OrganizationName": "Mana Vascular Clinic", + "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/16ea5a91-19bd-4984-ae06-403387a23542", - "OrganizationName": "Mana Vascular Clinic", + "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/dc2818f1-64f9-4338-8f4d-3826457ad9ff", - "OrganizationName": "Fayaz A Shawl MD PA", + "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/dc2818f1-64f9-4338-8f4d-3826457ad9ff", - "OrganizationName": "Fayaz A Shawl MD PA", + "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/edd7ace0-3444-41f4-907a-f02fab8520a2", - "OrganizationName": "Practice By Knight", + "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/edd7ace0-3444-41f4-907a-f02fab8520a2", - "OrganizationName": "Practice By Knight", + "URL": "https://api.practicefusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", + "OrganizationName": "Mana Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -21816,6 +21552,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "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/393fb70a-68e1-47b2-85bb-1eca4386564f", + "OrganizationName": "Donald T. Levine MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", + "OrganizationName": "Allied Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", "OrganizationName": "James W. Ratcliff , DPM", @@ -21841,38 +21601,50 @@ "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/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", "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/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", "NPIID": "", "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/ef252b19-a67b-43c3-8aae-614d1aecc28d", + "OrganizationName": "Woodlands Functional Family Medicine", "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/ef252b19-a67b-43c3-8aae-614d1aecc28d", + "OrganizationName": "Woodlands Functional Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ef252b19-a67b-43c3-8aae-614d1aecc28d", - "OrganizationName": "Woodlands Functional Family Medicine", + "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/ef252b19-a67b-43c3-8aae-614d1aecc28d", - "OrganizationName": "Woodlands Functional Family Medicine", + "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/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": "" }, @@ -21889,1550 +21661,3302 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c70a180-f90e-48a7-9ce4-4eb8e405f14c", - "OrganizationName": "Marcia Jones, NP", + "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/5c70a180-f90e-48a7-9ce4-4eb8e405f14c", + "OrganizationName": "Marcia Jones, NP", + "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": "" + }, + { + "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/43e10075-bdc6-4da4-bc5c-666fd50d7d00", + "OrganizationName": "Ark Medical Group VCA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", + "OrganizationName": "Phabulous Care, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/b4b8be80-7b30-496e-8233-82dbe0142aac", + "OrganizationName": "Josean Ortiz Rosario Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/fc1eee5b-7548-492d-9ffb-f97a16c60ebc", + "OrganizationName": "Urgent family care Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/dcfd559c-123d-4d2c-bd3d-9673fd3a29e5", + "OrganizationName": "Arthritis \u0026 Diabetes Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/875f82a3-ca1f-4a12-88d3-a66346873802", + "OrganizationName": "Radhakrishna Janardhan Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/aef1a6f8-cbc9-4dc4-8005-07f819941bbc", + "OrganizationName": "IK Medical PC", + "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/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/725a016e-c8fc-4773-a955-6dec22b86411", + "OrganizationName": "Wellness Alliance, PMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/08b0445b-0acc-436b-938a-a62df7f8d402", + "OrganizationName": "Harmony Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/e6e344d0-5500-453c-9664-d59a67f8df29", + "OrganizationName": "Healwell Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", + "OrganizationName": "HUZ Shifamed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/b139d930-3019-46ea-89ab-8fdd3e67a40c", + "OrganizationName": "BRANFORD FAMILY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/63151c9e-a3fa-4781-b379-13a36f36ad5f", + "OrganizationName": "Grace Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/3a67bb4c-3341-4d7f-ad14-7b2e4ece5df1", + "OrganizationName": "Midwest Vascular and Varicose Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/d3471e46-040e-4b6a-81a8-eeb0684b6750", + "OrganizationName": "Atenas Martinez Bernal Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/0d61274b-9bf2-4813-8cec-685739cd8024", + "OrganizationName": "Policlinica Familiar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/b2dbf81d-3459-407c-a809-861face37d05", + "OrganizationName": "QUEENS PSYCHOTHERAPY LCSW SERVICES P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/e41a5dde-352a-4c10-bf17-509a95c5d884", + "OrganizationName": "Elleorhim Mental Wellbeing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/69ec0bb3-381b-4400-821c-1f7a629d03b7", + "OrganizationName": "JVL mental health consult", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/21981623-91c8-4ca9-8852-6912a0be4b4a", + "OrganizationName": "Ascension MyHealth Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/80f35def-28fb-4db6-8d39-ae3fbff89870", + "OrganizationName": "JOHN LEE MD SLEEP CENTER INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/b356f97d-3990-47ca-bf86-83db2337cf31", + "OrganizationName": "Family Health and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/4b0cf7f1-5694-4751-9972-36056b7a01cf", + "OrganizationName": "Vijapura Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ad416607-019b-475a-8ba7-820e831c0e6b", + "OrganizationName": "MARIA VALENTIN MARI, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/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/78a68e3e-dfca-40e1-ad5e-f1b56885bcc9", + "OrganizationName": "Lets Go Med LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/a8e13822-8515-4d9e-a250-6508690be786", + "OrganizationName": "junichioharapra", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/1596f979-bad6-4ae5-a858-e84ded56d4d7", + "OrganizationName": "Kunik Health, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/7de438f9-d5d8-4b0b-8fe5-1315481c1f98", + "OrganizationName": "Garrison Medical Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/511a0649-804e-4b89-8a1d-5cfae92ab0d9", + "OrganizationName": "FIEL WELLNESS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/57cf9b35-dac9-4890-8098-7763969d131d", + "OrganizationName": "DEW anti-aging and Medspa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/5656b20a-bcbe-4f58-9c31-28909f549f12", + "OrganizationName": "Premier Pain \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", + "OrganizationName": "Safe Harbor Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/b9a3542a-de11-4b96-9e42-568e75cc79c8", + "OrganizationName": "christine j amis md", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/f405c9cc-f40e-4850-a307-b0d6be892b64", + "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/22131090-8364-4c98-84bb-62188eb8d8dd", + "OrganizationName": "Reno Psychiatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/b9792135-f1cf-43c5-8419-450a42750317", + "OrganizationName": "Rosalind Cropper Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/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/deb8b861-793a-4dd4-999c-8ea11e306d79", + "OrganizationName": "Lisa M. Patrick, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/f4c8153e-2071-4f9d-82a5-b16a41ee1542", + "OrganizationName": "Taylorville Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/cfb1a9aa-9da9-40e5-8824-dda098a6e53f", + "OrganizationName": "Chicago Pain Relief", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/d2a6888e-c6a7-4441-8b05-94f0ae71142c", + "OrganizationName": "Solace Healthcare Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ae417901-7d78-4f92-830e-5e6967b7e93b", + "OrganizationName": "Marla Mental health Sol LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/41f12538-62de-44ca-8c35-c595af587f67", + "OrganizationName": "Calm Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/1fd73d6c-0708-43e0-922f-def38a96aeaa", + "OrganizationName": "Eugenio Mulero-Portela, MD, FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", + "OrganizationName": "Family Practice by the Lake", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", + "OrganizationName": "Clear Minds Psychiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", + "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/04003d4b-9b7e-482e-a6bc-234c49c88591", + "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/0a6a08c2-b053-4760-9b50-253054280849", + "OrganizationName": "Bare Beauty Female Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", + "OrganizationName": "Dr. Michelle Gordon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/631d226a-3552-4c74-a227-60737475ecd8", + "OrganizationName": "San Diego Family Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/8017e2e6-765c-406d-9aca-79ac09ac66db", + "OrganizationName": "James Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/61c91165-6d19-4b99-bde1-72c7f1baf410", + "OrganizationName": "IBHS P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ebf2ef7d-1918-493a-94d6-d50bc688695b", + "OrganizationName": "WILLIAM A SAYLES MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/8b2e229a-9220-4c5a-93d0-6867f72ceb14", + "OrganizationName": "Mario Gonzalez Casafont", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", + "OrganizationName": "North Shore Medical LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/6d312acb-afc4-4f8d-a2cd-23591397736f", + "OrganizationName": "West Cayuga Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/2cce328f-5e81-47fd-b9ca-8566d99bcd53", + "OrganizationName": "Renew Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/5ae13c57-90f4-488b-9ce4-d3b53abdff2b", + "OrganizationName": "Jarrell Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/51e1219e-0764-4014-9433-cf1c9c11f8e1", + "OrganizationName": "Certi-Fi NP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/6cbfbf3b-d2ea-4f79-b7be-940bf8244890", + "OrganizationName": "Psych Matters LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/a337e49e-0c5c-42e9-bf75-e59802d3c979", + "OrganizationName": "Coastal River Wellness Of Alabama", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "Affordable Healthcare of Nevada LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "Affordable Healthcare of Nevada LLC", + "NPIID": "", + "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/166d0403-2e56-4ffd-ba19-acb3260c16db", + "OrganizationName": "Generations Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/10f0fa97-4c6b-4ed9-868e-d4a8f8208166", + "OrganizationName": "Katherine Johnson Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/4ab64921-de98-463a-8d4d-79ea095513c0", + "OrganizationName": "Revitalife Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", + "OrganizationName": "Hemcare Medical Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/6a5c84a7-bdbb-43c8-8a1d-15d5e39925b5", + "OrganizationName": "Alvarez Diaz Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/7be9d502-8706-4c27-8cbb-5b0815704c44", + "OrganizationName": "Edgardo Bermudez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/bb2b78f6-c589-4d22-8bf8-ebf5839209a3", + "OrganizationName": "Kevin Hundley Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Bama Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Bama Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ee12608d-b488-4e38-9a76-72c9e1a855bb", + "OrganizationName": "Robbins Family Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/880c7642-8ad7-45ee-a332-fddede4d5f92", + "OrganizationName": "Renann Kassis Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/36d5425b-a885-4a64-8427-429ad68f9aa6", + "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", + "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": "" + }, + { + "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/0d28363a-44b1-4886-af08-76fe4c6e4dd1", + "OrganizationName": "Rheumatology Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ff7ec2bd-dd83-4c7a-958a-4b33e1b604fb", + "OrganizationName": "Healthy Choice Family Clinic \u0026 Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", + "OrganizationName": "Berman Monell Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/bb6b3c14-2fc1-4704-9c99-08a5e460e8c2", + "OrganizationName": "Ala Moana Walk-In Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/0e3475f1-1332-4fdd-a72c-1264b1e925c9", + "OrganizationName": "Idaho Modern Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", + "OrganizationName": "Primary Care of Michigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/c88e6e59-081c-4799-84b2-24e6d4c05edc", + "OrganizationName": "Generations Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/2a40794f-903d-4b84-8791-4d548d7f79b2", + "OrganizationName": "DM Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", + "OrganizationName": "Asya Ofshteyn Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ffd66144-aae2-448a-ae8b-fa5c6face9a8", + "OrganizationName": "High Horizon Medical PC", + "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/cc260406-73e3-479a-85a6-2924030412ec", + "OrganizationName": "Irina Urusova, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/527b8968-1b67-46ce-a742-6bb28364208d", + "OrganizationName": "Bahram Taghavi Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/191119f9-5133-4e85-9bab-12a9d6c90dc1", + "OrganizationName": "US MEDICAL CLINICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", + "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/5df85414-78de-4ebd-aaa3-34cebcd8bea0", + "OrganizationName": "MS Health Care S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", + "OrganizationName": "Felton Health Care Specialists, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/bfdcd080-70c3-4628-ba33-75dc80270d64", + "OrganizationName": "Upper County Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/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/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/2501e292-9e3b-4039-b62e-d9eb25976787", + "OrganizationName": "Long Hollow Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/ea06fb91-b7b3-4f4c-8864-5fc621454e07", + "OrganizationName": "Inner Vibrance, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/71137cd7-bc1d-4d44-bc10-88d995620a28", + "OrganizationName": "selma Rural Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/2e2e8391-4c80-45d0-b41e-34299d0ea3ff", + "OrganizationName": "Urogynecology Center of Huntsville, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/941c5463-9a63-4feb-9e8d-f8c04d527b99", + "OrganizationName": "Cristina Wyse Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/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/f292a380-46b2-4174-9356-ff6ab93dcf87", + "OrganizationName": "Lozier Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "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/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/ecc53789-0b4e-4d9d-8ee4-63c1ba6cef38", + "OrganizationName": "WellCare at Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ecc53789-0b4e-4d9d-8ee4-63c1ba6cef38", + "OrganizationName": "WellCare at Home", + "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/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/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/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/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/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/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": "" + }, + { + "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/6fac5487-bc98-424e-a5f4-07b92931ab97", + "OrganizationName": "Michigan Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fac5487-bc98-424e-a5f4-07b92931ab97", + "OrganizationName": "Michigan Family Medicine", + "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/1f9b8689-fd0d-4175-80fd-2a566884e3c4", + "OrganizationName": "Advanced Rheumatology of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1f9b8689-fd0d-4175-80fd-2a566884e3c4", + "OrganizationName": "Advanced Rheumatology of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc04a4a7-9c13-4ce9-af5f-e6318aaf2ad6", + "OrganizationName": "Advanced Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc04a4a7-9c13-4ce9-af5f-e6318aaf2ad6", + "OrganizationName": "Advanced Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d3352e52-86f4-440b-93d1-e331dd164b97", + "OrganizationName": "Rejuv Medical Louisville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d3352e52-86f4-440b-93d1-e331dd164b97", + "OrganizationName": "Rejuv Medical Louisville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/fbc1fd93-569d-42aa-b261-ec125393c0cb", + "OrganizationName": "Apex Multispecialty Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fbc1fd93-569d-42aa-b261-ec125393c0cb", + "OrganizationName": "Apex Multispecialty Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/61ad811d-b9b0-4fcd-9a0b-ea1e9e605c34", + "OrganizationName": "Austin Schlecker MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/61ad811d-b9b0-4fcd-9a0b-ea1e9e605c34", + "OrganizationName": "Austin Schlecker MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f43779fc-8c65-42e6-9430-83b0a2d6aa97", + "OrganizationName": "Bethesda Health Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f43779fc-8c65-42e6-9430-83b0a2d6aa97", + "OrganizationName": "Bethesda Health Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9352fff1-e6be-47da-9a81-183106eaed1e", + "OrganizationName": "Central MD Primary Care Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9352fff1-e6be-47da-9a81-183106eaed1e", + "OrganizationName": "Central MD Primary Care Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0002cd6f-b70c-4584-83db-404c701cbbf1", + "OrganizationName": "ebrahim ahmadi md pc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0002cd6f-b70c-4584-83db-404c701cbbf1", + "OrganizationName": "ebrahim ahmadi md pc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4208fdcf-bba4-4759-b628-75dc9d0c33ed", + "OrganizationName": "Htay Win MD FRCS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4208fdcf-bba4-4759-b628-75dc9d0c33ed", + "OrganizationName": "Htay Win MD FRCS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d21d4c02-2036-45c4-8142-8aeca49b576d", + "OrganizationName": "Dr Wala Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d21d4c02-2036-45c4-8142-8aeca49b576d", + "OrganizationName": "Dr Wala Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4922680a-be40-4cff-92e1-f9e53cc67d87", + "OrganizationName": "Evanston Premier Healthcare Research, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4922680a-be40-4cff-92e1-f9e53cc67d87", + "OrganizationName": "Evanston Premier Healthcare Research, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3434ce5-ef32-4f51-b965-d43183c557c0", + "OrganizationName": "EWSJGG Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3434ce5-ef32-4f51-b965-d43183c557c0", + "OrganizationName": "EWSJGG Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7e46204d-b641-4e54-aa8a-316b0aaa846c", + "OrganizationName": "Greater Greenville Family Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7e46204d-b641-4e54-aa8a-316b0aaa846c", + "OrganizationName": "Greater Greenville Family Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1fd951c9-3317-42ae-84c7-bd69f5b9137d", + "OrganizationName": "Liverpool Family Health Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1fd951c9-3317-42ae-84c7-bd69f5b9137d", + "OrganizationName": "Liverpool Family Health Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/afde7dbd-752a-436a-9c7e-f08f79fe2e70", + "OrganizationName": "Waterford Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/afde7dbd-752a-436a-9c7e-f08f79fe2e70", + "OrganizationName": "Waterford Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b0d8f38-21d7-49fe-9923-a69dd0d13236", + "OrganizationName": "Marc Alan Saltzman MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b0d8f38-21d7-49fe-9923-a69dd0d13236", + "OrganizationName": "Marc Alan Saltzman MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7db61469-060f-4cc8-9b53-815c7d454e40", + "OrganizationName": "Magnificat Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7db61469-060f-4cc8-9b53-815c7d454e40", + "OrganizationName": "Magnificat Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8e40360a-7356-4a4b-9762-a3afdd83ff3e", + "OrganizationName": "Loan T Truong", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8e40360a-7356-4a4b-9762-a3afdd83ff3e", + "OrganizationName": "Loan T Truong", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/cf5872b1-eb6d-4beb-ad10-a97985090b80", + "OrganizationName": "Kala Medical Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/cf5872b1-eb6d-4beb-ad10-a97985090b80", + "OrganizationName": "Kala Medical Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/99ea41eb-aaaf-419f-9d30-838791fe1960", + "OrganizationName": "Internal Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/99ea41eb-aaaf-419f-9d30-838791fe1960", + "OrganizationName": "Internal Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ac9c257a-320d-4367-8d27-3e51e064f5ce", + "OrganizationName": "CustomCare Pharmacy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ac9c257a-320d-4367-8d27-3e51e064f5ce", + "OrganizationName": "CustomCare Pharmacy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3a7f53bd-6c70-4e53-8cad-ac9d8ef575f7", + "OrganizationName": "LAPIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c70a180-f90e-48a7-9ce4-4eb8e405f14c", - "OrganizationName": "Marcia Jones, NP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3a7f53bd-6c70-4e53-8cad-ac9d8ef575f7", + "OrganizationName": "LAPIC", "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/fe6521fa-aa78-4783-8fd1-52e27ebed62c", + "OrganizationName": "Dallas Cardiology Associates", "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/fe6521fa-aa78-4783-8fd1-52e27ebed62c", + "OrganizationName": "Dallas Cardiology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/de31b54a-a7c7-4541-a0d2-03748418bf86", - "OrganizationName": "Dr. Frank Mastrianno Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b51e452e-1564-4caa-9a93-7789068b4a1d", + "OrganizationName": "Samuel C. Hartman, M. D., P. A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/de31b54a-a7c7-4541-a0d2-03748418bf86", - "OrganizationName": "Dr. Frank Mastrianno Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b51e452e-1564-4caa-9a93-7789068b4a1d", + "OrganizationName": "Samuel C. Hartman, M. D., P. A.", "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/4791e808-6b7f-460f-a55f-bae1c1a70562", + "OrganizationName": "Hector Rafael Rodriguez Navarro MD 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/4791e808-6b7f-460f-a55f-bae1c1a70562", + "OrganizationName": "Hector Rafael Rodriguez Navarro MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", - "OrganizationName": "Modern Enhancement", + "URL": "https://api.patientfusion.com/fhir/r4/v1/38a92464-0cbd-447f-a782-eea7e71eeb8c", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", - "OrganizationName": "Modern Enhancement", + "URL": "https://api.practicefusion.com/fhir/r4/v1/38a92464-0cbd-447f-a782-eea7e71eeb8c", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "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/0a0286ac-179e-447d-9ad3-43762a541d76", + "OrganizationName": "Milton A. Jimenez, M.D P.A", "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/0a0286ac-179e-447d-9ad3-43762a541d76", + "OrganizationName": "Milton A. Jimenez, M.D P.A", "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/06214931-e14a-44f6-acb0-375640e7a1a2", + "OrganizationName": "Broadway Family Clinic", "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/06214931-e14a-44f6-acb0-375640e7a1a2", + "OrganizationName": "Broadway Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/43e10075-bdc6-4da4-bc5c-666fd50d7d00", - "OrganizationName": "Ark Medical Group VCA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/39d5d9fc-8b84-4cdf-b9b2-ed7e92e95cb3", + "OrganizationName": "River City Nephrology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/43e10075-bdc6-4da4-bc5c-666fd50d7d00", - "OrganizationName": "Ark Medical Group VCA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/39d5d9fc-8b84-4cdf-b9b2-ed7e92e95cb3", + "OrganizationName": "River City Nephrology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aef1a6f8-cbc9-4dc4-8005-07f819941bbc", - "OrganizationName": "IK Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2762d71c-7941-43cc-8410-af8bdd74a5c6", + "OrganizationName": "Vital housecall LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aef1a6f8-cbc9-4dc4-8005-07f819941bbc", - "OrganizationName": "IK Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2762d71c-7941-43cc-8410-af8bdd74a5c6", + "OrganizationName": "Vital housecall LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfd559c-123d-4d2c-bd3d-9673fd3a29e5", - "OrganizationName": "Arthritis \u0026 Diabetes Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e1a8730-a7bd-41c6-9f32-08129d9f6abc", + "OrganizationName": "A to Z Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfd559c-123d-4d2c-bd3d-9673fd3a29e5", - "OrganizationName": "Arthritis \u0026 Diabetes Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e1a8730-a7bd-41c6-9f32-08129d9f6abc", + "OrganizationName": "A to Z Pain Management", "NPIID": "", "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/d4f0b350-756c-48cf-839b-28ccfe617f4f", + "OrganizationName": "My Physicians", "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/d4f0b350-756c-48cf-839b-28ccfe617f4f", + "OrganizationName": "My Physicians", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/725a016e-c8fc-4773-a955-6dec22b86411", - "OrganizationName": "Wellness Alliance, PMA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3fcfbb62-a276-42f8-a7e9-ef29b159f5bb", + "OrganizationName": "Ana Gavrilovici MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/725a016e-c8fc-4773-a955-6dec22b86411", - "OrganizationName": "Wellness Alliance, PMA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3fcfbb62-a276-42f8-a7e9-ef29b159f5bb", + "OrganizationName": "Ana Gavrilovici MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1eee5b-7548-492d-9ffb-f97a16c60ebc", - "OrganizationName": "Urgent family care Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/40ee95b3-e776-465d-9067-86c54532d321", + "OrganizationName": "Ask Dr Ivy J", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1eee5b-7548-492d-9ffb-f97a16c60ebc", - "OrganizationName": "Urgent family care Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/40ee95b3-e776-465d-9067-86c54532d321", + "OrganizationName": "Ask Dr Ivy J", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/875f82a3-ca1f-4a12-88d3-a66346873802", - "OrganizationName": "Radhakrishna Janardhan Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/552a0d90-dd95-4a30-bab0-12dd845a0d90", + "OrganizationName": "All For Women Healthcare, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/875f82a3-ca1f-4a12-88d3-a66346873802", - "OrganizationName": "Radhakrishna Janardhan Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/552a0d90-dd95-4a30-bab0-12dd845a0d90", + "OrganizationName": "All For Women Healthcare, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/08b0445b-0acc-436b-938a-a62df7f8d402", - "OrganizationName": "Harmony Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a736a5ca-6476-40fc-87e4-681c620c287a", + "OrganizationName": "Mainstay Clinics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/08b0445b-0acc-436b-938a-a62df7f8d402", - "OrganizationName": "Harmony Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a736a5ca-6476-40fc-87e4-681c620c287a", + "OrganizationName": "Mainstay Clinics", "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/4d8dd1db-9a89-43dd-970f-60df527f9d4e", + "OrganizationName": "m abdella Practice", "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/4d8dd1db-9a89-43dd-970f-60df527f9d4e", + "OrganizationName": "m abdella Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", - "OrganizationName": "New Hope Integrative Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee7be2d0-307a-4da5-9f05-b5713282cb54", + "OrganizationName": "Michael E Debs, M.D INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", - "OrganizationName": "New Hope Integrative Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee7be2d0-307a-4da5-9f05-b5713282cb54", + "OrganizationName": "Michael E Debs, M.D INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/63151c9e-a3fa-4781-b379-13a36f36ad5f", - "OrganizationName": "Grace Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af9b3332-1e57-42d4-bcff-e65eeb0e16a9", + "OrganizationName": "Marshall", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/63151c9e-a3fa-4781-b379-13a36f36ad5f", - "OrganizationName": "Grace Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af9b3332-1e57-42d4-bcff-e65eeb0e16a9", + "OrganizationName": "Marshall", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b139d930-3019-46ea-89ab-8fdd3e67a40c", - "OrganizationName": "BRANFORD FAMILY MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/830a73a3-2bfa-4fff-b15b-1e4eb456557b", + "OrganizationName": "Nevaeh Health \u0026 Wellness Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b139d930-3019-46ea-89ab-8fdd3e67a40c", - "OrganizationName": "BRANFORD FAMILY MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/830a73a3-2bfa-4fff-b15b-1e4eb456557b", + "OrganizationName": "Nevaeh Health \u0026 Wellness Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3a67bb4c-3341-4d7f-ad14-7b2e4ece5df1", - "OrganizationName": "Midwest Vascular and Varicose Vein Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/911ff752-2cab-4810-95e6-c96908376f6f", + "OrganizationName": "Nina Logvinenko", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3a67bb4c-3341-4d7f-ad14-7b2e4ece5df1", - "OrganizationName": "Midwest Vascular and Varicose Vein Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/911ff752-2cab-4810-95e6-c96908376f6f", + "OrganizationName": "Nina Logvinenko", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e6e344d0-5500-453c-9664-d59a67f8df29", - "OrganizationName": "Healwell Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/311742ce-9b22-45fc-9dac-e644cbd3f10a", + "OrganizationName": "PREMIER INTERNAL MEDICINE ASSOCIATES, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e6e344d0-5500-453c-9664-d59a67f8df29", - "OrganizationName": "Healwell Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/311742ce-9b22-45fc-9dac-e644cbd3f10a", + "OrganizationName": "PREMIER INTERNAL MEDICINE ASSOCIATES, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b2dbf81d-3459-407c-a809-861face37d05", - "OrganizationName": "QUEENS PSYCHOTHERAPY LCSW SERVICES P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ae98fc8f-40e8-4e54-b453-2c4a9aa5635e", + "OrganizationName": "PHYSICIAN CARE SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b2dbf81d-3459-407c-a809-861face37d05", - "OrganizationName": "QUEENS PSYCHOTHERAPY LCSW SERVICES P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ae98fc8f-40e8-4e54-b453-2c4a9aa5635e", + "OrganizationName": "PHYSICIAN CARE SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d3471e46-040e-4b6a-81a8-eeb0684b6750", - "OrganizationName": "Atenas Martinez Bernal Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4f52afab-cb06-4c6b-9a66-d96526df60df", + "OrganizationName": "R.T. BOCK M.D. CONSULTANCY L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d3471e46-040e-4b6a-81a8-eeb0684b6750", - "OrganizationName": "Atenas Martinez Bernal Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4f52afab-cb06-4c6b-9a66-d96526df60df", + "OrganizationName": "R.T. BOCK M.D. CONSULTANCY L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d61274b-9bf2-4813-8cec-685739cd8024", - "OrganizationName": "Policlinica Familiar", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d10729fc-b8fb-4584-b970-b2bb081280e4", + "OrganizationName": "Sambandam Baskaran, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d61274b-9bf2-4813-8cec-685739cd8024", - "OrganizationName": "Policlinica Familiar", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d10729fc-b8fb-4584-b970-b2bb081280e4", + "OrganizationName": "Sambandam Baskaran, M.D.", "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/b20087de-bc1c-4f4f-9980-a0e36e941f7d", + "OrganizationName": "Sidney Medical Healthcare", "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/b20087de-bc1c-4f4f-9980-a0e36e941f7d", + "OrganizationName": "Sidney Medical Healthcare", "NPIID": "", "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/f556b34a-6a42-4ed5-a6b7-bbd4112ee0a2", + "OrganizationName": "Dr. Robert Kaplan", "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/f556b34a-6a42-4ed5-a6b7-bbd4112ee0a2", + "OrganizationName": "Dr. Robert Kaplan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/21981623-91c8-4ca9-8852-6912a0be4b4a", - "OrganizationName": "Ascension MyHealth Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff1e2f42-73dc-4d3f-8df3-a74303a9edf6", + "OrganizationName": "Aleksandr Rakhminov Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/21981623-91c8-4ca9-8852-6912a0be4b4a", - "OrganizationName": "Ascension MyHealth Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff1e2f42-73dc-4d3f-8df3-a74303a9edf6", + "OrganizationName": "Aleksandr Rakhminov Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b0cf7f1-5694-4751-9972-36056b7a01cf", - "OrganizationName": "Vijapura Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9dde4b23-b1c6-46a2-96a9-459198bad293", + "OrganizationName": "STAT Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4b0cf7f1-5694-4751-9972-36056b7a01cf", - "OrganizationName": "Vijapura Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9dde4b23-b1c6-46a2-96a9-459198bad293", + "OrganizationName": "STAT Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad416607-019b-475a-8ba7-820e831c0e6b", - "OrganizationName": "MARIA VALENTIN MARI, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9ece17aa-abc7-4a67-a65f-0d86debfe0f5", + "OrganizationName": "SAMUEL HS THE MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad416607-019b-475a-8ba7-820e831c0e6b", - "OrganizationName": "MARIA VALENTIN MARI, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9ece17aa-abc7-4a67-a65f-0d86debfe0f5", + "OrganizationName": "SAMUEL HS THE MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", - "OrganizationName": "Advanced Practice Psychiatric Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/66040ad4-2ebc-4a25-9c37-dc36c82cafc6", + "OrganizationName": "Teodoro R Mariano Jr. M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", - "OrganizationName": "Advanced Practice Psychiatric Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/66040ad4-2ebc-4a25-9c37-dc36c82cafc6", + "OrganizationName": "Teodoro R Mariano Jr. M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b356f97d-3990-47ca-bf86-83db2337cf31", - "OrganizationName": "Family Health and Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec965bcc-d2e5-46e0-a765-cd3999e84187", + "OrganizationName": "Universal Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b356f97d-3990-47ca-bf86-83db2337cf31", - "OrganizationName": "Family Health and Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec965bcc-d2e5-46e0-a765-cd3999e84187", + "OrganizationName": "Universal Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80f35def-28fb-4db6-8d39-ae3fbff89870", - "OrganizationName": "JOHN LEE MD SLEEP CENTER INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3924a645-a50c-489d-8e29-7a62741570a2", + "OrganizationName": "Valley Clinics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80f35def-28fb-4db6-8d39-ae3fbff89870", - "OrganizationName": "JOHN LEE MD SLEEP CENTER INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3924a645-a50c-489d-8e29-7a62741570a2", + "OrganizationName": "Valley Clinics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78a68e3e-dfca-40e1-ad5e-f1b56885bcc9", - "OrganizationName": "Lets Go Med LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/81e7ea18-24d3-4c19-a61f-593e3a3966f0", + "OrganizationName": "Ramirez Foot \u0026 Ankle Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78a68e3e-dfca-40e1-ad5e-f1b56885bcc9", - "OrganizationName": "Lets Go Med LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/81e7ea18-24d3-4c19-a61f-593e3a3966f0", + "OrganizationName": "Ramirez Foot \u0026 Ankle Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a8e13822-8515-4d9e-a250-6508690be786", - "OrganizationName": "junichioharapra", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eafa6498-d613-4fc2-9ec8-94c7d1e46ac3", + "OrganizationName": "Advance Physical Therapy of Orting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a8e13822-8515-4d9e-a250-6508690be786", - "OrganizationName": "junichioharapra", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eafa6498-d613-4fc2-9ec8-94c7d1e46ac3", + "OrganizationName": "Advance Physical Therapy of Orting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7de438f9-d5d8-4b0b-8fe5-1315481c1f98", - "OrganizationName": "Garrison Medical Consultants", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3d0b2ff-88a4-4d6e-8c5e-f46665ca56ec", + "OrganizationName": "Agape Family Health Center The Office of Vivian L Artis MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7de438f9-d5d8-4b0b-8fe5-1315481c1f98", - "OrganizationName": "Garrison Medical Consultants", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3d0b2ff-88a4-4d6e-8c5e-f46665ca56ec", + "OrganizationName": "Agape Family Health Center The Office of Vivian L Artis MD", "NPIID": "", "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/89cee06b-715a-47d4-a82f-56ba834830f3", + "OrganizationName": "First Light Lifestyle Medical Clinic, PLLC", "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/89cee06b-715a-47d4-a82f-56ba834830f3", + "OrganizationName": "First Light Lifestyle Medical Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/511a0649-804e-4b89-8a1d-5cfae92ab0d9", - "OrganizationName": "FIEL WELLNESS HEALTH", + "URL": "https://api.patientfusion.com/fhir/r4/v1/66625fe2-bc68-459d-96a9-ab15c06ba263", + "OrganizationName": "Texas Mind and Body Psychiatric Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/511a0649-804e-4b89-8a1d-5cfae92ab0d9", - "OrganizationName": "FIEL WELLNESS HEALTH", + "URL": "https://api.practicefusion.com/fhir/r4/v1/66625fe2-bc68-459d-96a9-ab15c06ba263", + "OrganizationName": "Texas Mind and Body Psychiatric Services, PLLC", "NPIID": "", "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/b8e31324-1101-4fa7-8041-c4a2226b1f80", + "OrganizationName": "Victoria Medical Inc", "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/b8e31324-1101-4fa7-8041-c4a2226b1f80", + "OrganizationName": "Victoria Medical Inc", "NPIID": "", "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/b4f98650-2591-4527-aa13-c52140e31be4", + "OrganizationName": "Aaron Andersen Practice", "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/b4f98650-2591-4527-aa13-c52140e31be4", + "OrganizationName": "Aaron Andersen Practice", "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/ab93189f-89a9-478d-a844-981cb7205667", + "OrganizationName": "White Coat Medical Group", "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/ab93189f-89a9-478d-a844-981cb7205667", + "OrganizationName": "White Coat Medical Group", "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/9d5d832b-3799-4b58-8bdd-29e84a358ed5", + "OrganizationName": "George Muthalakuzhy MD", "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/9d5d832b-3799-4b58-8bdd-29e84a358ed5", + "OrganizationName": "George Muthalakuzhy MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/22131090-8364-4c98-84bb-62188eb8d8dd", - "OrganizationName": "Reno Psychiatric Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d3c4fc07-4989-47cc-a240-d43c30fb1327", + "OrganizationName": "A Family Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/22131090-8364-4c98-84bb-62188eb8d8dd", - "OrganizationName": "Reno Psychiatric Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d3c4fc07-4989-47cc-a240-d43c30fb1327", + "OrganizationName": "A Family Care 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/8f4230d3-9f31-4e92-91ae-e646211b69da", + "OrganizationName": "Vital Care Clinic of Estill Springs, PLLC", "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/8f4230d3-9f31-4e92-91ae-e646211b69da", + "OrganizationName": "Vital Care Clinic of Estill Springs, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9792135-f1cf-43c5-8419-450a42750317", - "OrganizationName": "Rosalind Cropper Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d59ee19-5d7f-43bf-900e-34971f128254", + "OrganizationName": "Ohana Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9792135-f1cf-43c5-8419-450a42750317", - "OrganizationName": "Rosalind Cropper Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d59ee19-5d7f-43bf-900e-34971f128254", + "OrganizationName": "Ohana Medical", "NPIID": "", "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/98c454a7-ea55-4be4-a9fb-74af65abd3a8", + "OrganizationName": "Metro ObGyn", "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/98c454a7-ea55-4be4-a9fb-74af65abd3a8", + "OrganizationName": "Metro ObGyn", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a3542a-de11-4b96-9e42-568e75cc79c8", - "OrganizationName": "christine j amis md", + "URL": "https://api.patientfusion.com/fhir/r4/v1/79e4e006-ebc2-4729-8573-df7626cdbc52", + "OrganizationName": "Fanuel Dorilas Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a3542a-de11-4b96-9e42-568e75cc79c8", - "OrganizationName": "christine j amis md", + "URL": "https://api.practicefusion.com/fhir/r4/v1/79e4e006-ebc2-4729-8573-df7626cdbc52", + "OrganizationName": "Fanuel Dorilas Practice", "NPIID": "", "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/3d77b5eb-e88c-421c-8647-5954b5017439", + "OrganizationName": "hank lavallet Practice", "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/3d77b5eb-e88c-421c-8647-5954b5017439", + "OrganizationName": "hank lavallet Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/deb8b861-793a-4dd4-999c-8ea11e306d79", - "OrganizationName": "Lisa M. Patrick, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/742fdf7f-3c1f-489d-b802-cd2934f4e784", + "OrganizationName": "Lino Benech Jimenez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/deb8b861-793a-4dd4-999c-8ea11e306d79", - "OrganizationName": "Lisa M. Patrick, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/742fdf7f-3c1f-489d-b802-cd2934f4e784", + "OrganizationName": "Lino Benech Jimenez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cfb1a9aa-9da9-40e5-8824-dda098a6e53f", - "OrganizationName": "Chicago Pain Relief", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f486ea11-0282-446e-ac69-0fd756867e74", + "OrganizationName": "Eduardo L. Chinea-Amadeo MD FACS MISS General, Bariatric \u0026 Colorectal Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cfb1a9aa-9da9-40e5-8824-dda098a6e53f", - "OrganizationName": "Chicago Pain Relief", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f486ea11-0282-446e-ac69-0fd756867e74", + "OrganizationName": "Eduardo L. Chinea-Amadeo MD FACS MISS General, Bariatric \u0026 Colorectal Surgery", "NPIID": "", "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/ca51ac07-a5e1-42a8-a117-f47a7124b7a6", + "OrganizationName": "HOUSE MDS PLC", "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/ca51ac07-a5e1-42a8-a117-f47a7124b7a6", + "OrganizationName": "HOUSE MDS PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ae417901-7d78-4f92-830e-5e6967b7e93b", - "OrganizationName": "Marla Mental health Sol LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0bfaa732-8797-4e9c-a6f4-69e7eadc4c85", + "OrganizationName": "Michelle A Bell, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ae417901-7d78-4f92-830e-5e6967b7e93b", - "OrganizationName": "Marla Mental health Sol LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0bfaa732-8797-4e9c-a6f4-69e7eadc4c85", + "OrganizationName": "Michelle A Bell, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6888e-c6a7-4441-8b05-94f0ae71142c", - "OrganizationName": "Solace Healthcare Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/534b47fe-4f6c-4973-b3c5-6526f01c19d0", + "OrganizationName": "Modern Richmond Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6888e-c6a7-4441-8b05-94f0ae71142c", - "OrganizationName": "Solace Healthcare Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/534b47fe-4f6c-4973-b3c5-6526f01c19d0", + "OrganizationName": "Modern Richmond Endocrinology", "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/3265145b-6f72-4b6c-807a-f11a2e5e8e83", + "OrganizationName": "Miles Med Management", "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/3265145b-6f72-4b6c-807a-f11a2e5e8e83", + "OrganizationName": "Miles Med Management", "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/1f857aec-7b83-468a-a22d-4511fcade69f", + "OrganizationName": "Desert Teleheart", "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/1f857aec-7b83-468a-a22d-4511fcade69f", + "OrganizationName": "Desert Teleheart", "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/47287ba4-b349-49be-84d1-3b7d34f69076", + "OrganizationName": "SATYA MEDICAL DBA SERENE INTEGRATIVE HEALTHCARE", "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/47287ba4-b349-49be-84d1-3b7d34f69076", + "OrganizationName": "SATYA MEDICAL DBA SERENE INTEGRATIVE HEALTHCARE", "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/f349bda4-dc13-4d64-9b51-5ff9aeb204e7", + "OrganizationName": "Prisk Orthopaedics and Wellness, PC", "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/f349bda4-dc13-4d64-9b51-5ff9aeb204e7", + "OrganizationName": "Prisk Orthopaedics and Wellness, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1fd73d6c-0708-43e0-922f-def38a96aeaa", - "OrganizationName": "Eugenio Mulero-Portela, MD, FACS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93ea20ef-2d74-4307-b525-e7460f3acd71", + "OrganizationName": "Intregrative Functional Medicine Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1fd73d6c-0708-43e0-922f-def38a96aeaa", - "OrganizationName": "Eugenio Mulero-Portela, MD, FACS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93ea20ef-2d74-4307-b525-e7460f3acd71", + "OrganizationName": "Intregrative Functional Medicine Wellness", "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/726bebfb-9643-49d7-acf8-b71ac86e664d", + "OrganizationName": "Carolina ADHD Solutions, PLLC.", "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/726bebfb-9643-49d7-acf8-b71ac86e664d", + "OrganizationName": "Carolina ADHD Solutions, PLLC.", "NPIID": "", "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/4f9642b4-0f7a-4213-a896-af4f875e2da7", + "OrganizationName": "Rebecca McKimmey APRN, CNM", "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/4f9642b4-0f7a-4213-a896-af4f875e2da7", + "OrganizationName": "Rebecca McKimmey APRN, CNM", "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/c8bc3794-018c-4336-94c0-84908270da3f", + "OrganizationName": "Vernon Rebello Practice", "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/c8bc3794-018c-4336-94c0-84908270da3f", + "OrganizationName": "Vernon Rebello Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf2ef7d-1918-493a-94d6-d50bc688695b", - "OrganizationName": "WILLIAM A SAYLES MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/51c26712-0854-4580-96e9-d6f95e15921d", + "OrganizationName": "Horizon Mobile Physician Services, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf2ef7d-1918-493a-94d6-d50bc688695b", - "OrganizationName": "WILLIAM A SAYLES MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/51c26712-0854-4580-96e9-d6f95e15921d", + "OrganizationName": "Horizon Mobile Physician Services, Inc", "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/d4d1a88c-e289-4648-b0b3-0581c2c0ed6d", + "OrganizationName": "David S Kim", "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/d4d1a88c-e289-4648-b0b3-0581c2c0ed6d", + "OrganizationName": "David S Kim", "NPIID": "", "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/3dc83abb-89fd-4a0e-a37e-307dfd1a73ea", + "OrganizationName": "Family Medical Clinic", "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/3dc83abb-89fd-4a0e-a37e-307dfd1a73ea", + "OrganizationName": "Family Medical Clinic", "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/36dc2d72-9782-4872-bd64-c8ad23c0a1d1", + "OrganizationName": "CollegeDoc", "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/36dc2d72-9782-4872-bd64-c8ad23c0a1d1", + "OrganizationName": "CollegeDoc", "NPIID": "", "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/ba9df2c9-f77b-435f-a979-8fd14c6ac7d6", + "OrganizationName": "Diamond med spa", "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/ba9df2c9-f77b-435f-a979-8fd14c6ac7d6", + "OrganizationName": "Diamond med spa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/61c91165-6d19-4b99-bde1-72c7f1baf410", - "OrganizationName": "IBHS P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/96b42615-3ab4-4472-91a9-8d9c3bfee107", + "OrganizationName": "Cox Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/61c91165-6d19-4b99-bde1-72c7f1baf410", - "OrganizationName": "IBHS P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/96b42615-3ab4-4472-91a9-8d9c3bfee107", + "OrganizationName": "Cox Clinic", "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/c61e3b43-4619-4fab-add9-c82f5103ae84", + "OrganizationName": "Body and Mind Medical", "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/c61e3b43-4619-4fab-add9-c82f5103ae84", + "OrganizationName": "Body and Mind Medical", "NPIID": "", "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/274b90ff-c21d-437a-9b62-dd4652159277", + "OrganizationName": "Redmond Family Care", "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/274b90ff-c21d-437a-9b62-dd4652159277", + "OrganizationName": "Redmond Family Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5ae13c57-90f4-488b-9ce4-d3b53abdff2b", - "OrganizationName": "Jarrell Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d5917e5d-c589-43f5-87b3-5fed96235912", + "OrganizationName": "Ricardo Gomez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5ae13c57-90f4-488b-9ce4-d3b53abdff2b", - "OrganizationName": "Jarrell Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d5917e5d-c589-43f5-87b3-5fed96235912", + "OrganizationName": "Ricardo Gomez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", - "OrganizationName": "Dr. Ricardo Gago-Pinero office", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e4559847-9c5d-4c28-982f-bfc4b8c0f710", + "OrganizationName": "Greater Houston Infectious Diseases Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", - "OrganizationName": "Dr. Ricardo Gago-Pinero office", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e4559847-9c5d-4c28-982f-bfc4b8c0f710", + "OrganizationName": "Greater Houston Infectious Diseases Center", "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/a888117c-9577-4cff-a80c-650ef270636c", + "OrganizationName": "Jose A. Ortiz", "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/a888117c-9577-4cff-a80c-650ef270636c", + "OrganizationName": "Jose A. Ortiz", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/51e1219e-0764-4014-9433-cf1c9c11f8e1", - "OrganizationName": "Certi-Fi NP PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6bdbc063-6d3d-44e1-bef9-7a262ccf74e8", + "OrganizationName": "Frank McCormick MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/51e1219e-0764-4014-9433-cf1c9c11f8e1", - "OrganizationName": "Certi-Fi NP PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6bdbc063-6d3d-44e1-bef9-7a262ccf74e8", + "OrganizationName": "Frank McCormick MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6cbfbf3b-d2ea-4f79-b7be-940bf8244890", - "OrganizationName": "Psych Matters LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4380a7be-20bb-4bac-99dd-9ee3da79fc55", + "OrganizationName": "Reumatologia CLA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6cbfbf3b-d2ea-4f79-b7be-940bf8244890", - "OrganizationName": "Psych Matters LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4380a7be-20bb-4bac-99dd-9ee3da79fc55", + "OrganizationName": "Reumatologia CLA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a337e49e-0c5c-42e9-bf75-e59802d3c979", - "OrganizationName": "Coastal River Wellness Of Alabama", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93c1a317-c0f1-4729-a07f-b128a1b1bd2c", + "OrganizationName": "Natural State Ivy, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a337e49e-0c5c-42e9-bf75-e59802d3c979", - "OrganizationName": "Coastal River Wellness Of Alabama", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93c1a317-c0f1-4729-a07f-b128a1b1bd2c", + "OrganizationName": "Natural State Ivy, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", - "OrganizationName": "AHN", + "URL": "https://api.patientfusion.com/fhir/r4/v1/66cf1ef6-7393-4fe5-bebf-fdcb8ecb5ea5", + "OrganizationName": "MIB Surgery", "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/66cf1ef6-7393-4fe5-bebf-fdcb8ecb5ea5", + "OrganizationName": "MIB Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", - "OrganizationName": "Arizona Physician Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ed8efe4-71ce-4fd0-a3b0-014b8aa071c3", + "OrganizationName": "Maya Healthcare Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", - "OrganizationName": "Arizona Physician Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ed8efe4-71ce-4fd0-a3b0-014b8aa071c3", + "OrganizationName": "Maya Healthcare Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/166d0403-2e56-4ffd-ba19-acb3260c16db", - "OrganizationName": "Generations Health \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ea962448-68e6-47ab-b1f7-c2cdc6d88053", + "OrganizationName": "Firebaugh Family Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/166d0403-2e56-4ffd-ba19-acb3260c16db", - "OrganizationName": "Generations Health \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ea962448-68e6-47ab-b1f7-c2cdc6d88053", + "OrganizationName": "Firebaugh Family Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/10f0fa97-4c6b-4ed9-868e-d4a8f8208166", - "OrganizationName": "Katherine Johnson Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4fdbf142-b17b-42d0-a0fb-7ea2d6fd0408", + "OrganizationName": "TrueCare Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/10f0fa97-4c6b-4ed9-868e-d4a8f8208166", - "OrganizationName": "Katherine Johnson Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4fdbf142-b17b-42d0-a0fb-7ea2d6fd0408", + "OrganizationName": "TrueCare Medical Associates", "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/2c059302-c163-46dc-861d-65db7c758654", + "OrganizationName": "Willow House Direct Medical", "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/2c059302-c163-46dc-861d-65db7c758654", + "OrganizationName": "Willow House Direct Medical", "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/06a1916a-a484-49af-93ad-683438289b9f", + "OrganizationName": "Orosi Rural Health", "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/06a1916a-a484-49af-93ad-683438289b9f", + "OrganizationName": "Orosi Rural Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a5c84a7-bdbb-43c8-8a1d-15d5e39925b5", - "OrganizationName": "Alvarez Diaz Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/94839f4d-060f-49b5-bf19-f6e435dc9cba", + "OrganizationName": "Gericare PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a5c84a7-bdbb-43c8-8a1d-15d5e39925b5", - "OrganizationName": "Alvarez Diaz Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/94839f4d-060f-49b5-bf19-f6e435dc9cba", + "OrganizationName": "Gericare PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7be9d502-8706-4c27-8cbb-5b0815704c44", - "OrganizationName": "Edgardo Bermudez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b26c9da8-d30f-434c-ad10-418d394ac82b", + "OrganizationName": "Manhattan House Calls, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7be9d502-8706-4c27-8cbb-5b0815704c44", - "OrganizationName": "Edgardo Bermudez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b26c9da8-d30f-434c-ad10-418d394ac82b", + "OrganizationName": "Manhattan House Calls, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb2b78f6-c589-4d22-8bf8-ebf5839209a3", - "OrganizationName": "Kevin Hundley Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/360d0b47-443e-482f-8989-2b8153c48a62", + "OrganizationName": "Silver Lining Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb2b78f6-c589-4d22-8bf8-ebf5839209a3", - "OrganizationName": "Kevin Hundley Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/360d0b47-443e-482f-8989-2b8153c48a62", + "OrganizationName": "Silver Lining Surgeons", "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/084cd900-49f6-428b-afa0-6aef3144e7ad", + "OrganizationName": "Lake Acworth Family Practice", "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/084cd900-49f6-428b-afa0-6aef3144e7ad", + "OrganizationName": "Lake Acworth Family Practice", "NPIID": "", "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/8057cc9d-20e1-4854-9beb-29bdd4f141f4", + "OrganizationName": "Wilson Aesthetics", "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/8057cc9d-20e1-4854-9beb-29bdd4f141f4", + "OrganizationName": "Wilson Aesthetics", "NPIID": "", "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/db08c633-127f-4199-b108-fdd8bfe05efd", + "OrganizationName": "PATRICK SWEET MD, P.C.", "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/db08c633-127f-4199-b108-fdd8bfe05efd", + "OrganizationName": "PATRICK SWEET MD, P.C.", "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/63cad133-dbe6-451f-a6fa-d6ecb9ff8d9f", + "OrganizationName": "Petrychenko Physician PC", "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/63cad133-dbe6-451f-a6fa-d6ecb9ff8d9f", + "OrganizationName": "Petrychenko Physician PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/880c7642-8ad7-45ee-a332-fddede4d5f92", - "OrganizationName": "Renann Kassis Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/14509cd7-326d-4163-9d82-eb94c1821648", + "OrganizationName": "DANIEL ACEVEDO MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/880c7642-8ad7-45ee-a332-fddede4d5f92", - "OrganizationName": "Renann Kassis Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/14509cd7-326d-4163-9d82-eb94c1821648", + "OrganizationName": "DANIEL ACEVEDO MD Inc", "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/6fbb8ab3-a6f5-4e2f-8b9d-54a802047cab", + "OrganizationName": "Vitality Fountain LLC", "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/6fbb8ab3-a6f5-4e2f-8b9d-54a802047cab", + "OrganizationName": "Vitality Fountain LLC", "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/3b27892d-8da2-4eb6-8590-7e19d20648b5", + "OrganizationName": "Holly Engelman Practice", "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/3b27892d-8da2-4eb6-8590-7e19d20648b5", + "OrganizationName": "Holly Engelman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff7ec2bd-dd83-4c7a-958a-4b33e1b604fb", - "OrganizationName": "Healthy Choice Family Clinic \u0026 Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/52c3da56-4c33-4504-a98b-13ea754553e6", + "OrganizationName": "Sean Tsai, D.O. Professional Corp.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff7ec2bd-dd83-4c7a-958a-4b33e1b604fb", - "OrganizationName": "Healthy Choice Family Clinic \u0026 Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/52c3da56-4c33-4504-a98b-13ea754553e6", + "OrganizationName": "Sean Tsai, D.O. Professional Corp.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb6b3c14-2fc1-4704-9c99-08a5e460e8c2", - "OrganizationName": "Ala Moana Walk-In Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb1fa491-7f53-4d56-abb3-06140c67bcf6", + "OrganizationName": "Healthy Living Diabetes and Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb6b3c14-2fc1-4704-9c99-08a5e460e8c2", - "OrganizationName": "Ala Moana Walk-In Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb1fa491-7f53-4d56-abb3-06140c67bcf6", + "OrganizationName": "Healthy Living Diabetes and Endocrinology", "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/3c2a9cfd-f956-4526-9d1f-d41e678d3877", + "OrganizationName": "Alpha Medicine and Rehab, LLC", "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/3c2a9cfd-f956-4526-9d1f-d41e678d3877", + "OrganizationName": "Alpha Medicine and Rehab, LLC", "NPIID": "", "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/6dde5b5b-41d3-4a88-af5f-6b45b5438f24", + "OrganizationName": "Pablo Lam Practice", "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/6dde5b5b-41d3-4a88-af5f-6b45b5438f24", + "OrganizationName": "Pablo Lam Practice", "NPIID": "", "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/40c1c443-b4d9-4053-9550-5d7e11f8b027", + "OrganizationName": "Keshava Medical 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/40c1c443-b4d9-4053-9550-5d7e11f8b027", + "OrganizationName": "Keshava Medical center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd66144-aae2-448a-ae8b-fa5c6face9a8", - "OrganizationName": "High Horizon Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aae89cff-b100-4dfc-854b-4b4252d6e77e", + "OrganizationName": "Pain Management Center of Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd66144-aae2-448a-ae8b-fa5c6face9a8", - "OrganizationName": "High Horizon Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aae89cff-b100-4dfc-854b-4b4252d6e77e", + "OrganizationName": "Pain Management Center of Michigan", "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/0ae609c2-debe-4335-be67-04d75fcfd891", + "OrganizationName": "Heal Thyself LLC", "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/0ae609c2-debe-4335-be67-04d75fcfd891", + "OrganizationName": "Heal Thyself LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c88e6e59-081c-4799-84b2-24e6d4c05edc", - "OrganizationName": "Generations Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8463cddc-27b7-48d1-a549-83c3af52fe28", + "OrganizationName": "Maryam Guiahi MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c88e6e59-081c-4799-84b2-24e6d4c05edc", - "OrganizationName": "Generations Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8463cddc-27b7-48d1-a549-83c3af52fe28", + "OrganizationName": "Maryam Guiahi MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", - "OrganizationName": "marccantillonpr", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8bef4490-5efd-4d09-9519-41c2896152d9", + "OrganizationName": "Optimal Healthcare", "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/8bef4490-5efd-4d09-9519-41c2896152d9", + "OrganizationName": "Optimal Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/527b8968-1b67-46ce-a742-6bb28364208d", - "OrganizationName": "Bahram Taghavi Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bddda126-ad4d-475c-8d74-99cb80bf546f", + "OrganizationName": "FORTITUDE FOOT \u0026 ANKLE SPECIALISTS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/527b8968-1b67-46ce-a742-6bb28364208d", - "OrganizationName": "Bahram Taghavi Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bddda126-ad4d-475c-8d74-99cb80bf546f", + "OrganizationName": "FORTITUDE FOOT \u0026 ANKLE SPECIALISTS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc260406-73e3-479a-85a6-2924030412ec", - "OrganizationName": "Irina Urusova, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/18c1a707-66a6-4171-abba-42287dd7501e", + "OrganizationName": "Norma L Waite MD-Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc260406-73e3-479a-85a6-2924030412ec", - "OrganizationName": "Irina Urusova, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/18c1a707-66a6-4171-abba-42287dd7501e", + "OrganizationName": "Norma L Waite MD-Medical Group LLC", "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/ed2d7f16-3107-4a6e-841a-d44c58ef5b15", + "OrganizationName": "Boone Heart \u0026 Wellness", "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/ed2d7f16-3107-4a6e-841a-d44c58ef5b15", + "OrganizationName": "Boone Heart \u0026 Wellness", "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/12cbfb6b-1894-40f9-afda-7a6163b3deb9", + "OrganizationName": "Richard R Noland Practice", "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/12cbfb6b-1894-40f9-afda-7a6163b3deb9", + "OrganizationName": "Richard R Noland Practice", "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/51f47e94-0783-4340-9215-cc021de4e946", + "OrganizationName": "Krys Rollins, FNP 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/51f47e94-0783-4340-9215-cc021de4e946", + "OrganizationName": "Krys Rollins, FNP PLLC", "NPIID": "", "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/902be7fe-66b2-4bab-aacc-ce069e404f33", + "OrganizationName": "Bernadette Guiroy, M.D., F.A.C.S.", "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/902be7fe-66b2-4bab-aacc-ce069e404f33", + "OrganizationName": "Bernadette Guiroy, M.D., F.A.C.S.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5df85414-78de-4ebd-aaa3-34cebcd8bea0", - "OrganizationName": "MS Health Care S.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7dc3a9b2-1e12-4e7b-893f-73363f3f90a4", + "OrganizationName": "DEXTER PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5df85414-78de-4ebd-aaa3-34cebcd8bea0", - "OrganizationName": "MS Health Care S.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7dc3a9b2-1e12-4e7b-893f-73363f3f90a4", + "OrganizationName": "DEXTER PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", - "OrganizationName": "Cultivating Resilience", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6bb33b09-52a8-49f3-861b-ec84005a5eba", + "OrganizationName": "Advanced Kidney Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", - "OrganizationName": "Cultivating Resilience", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6bb33b09-52a8-49f3-861b-ec84005a5eba", + "OrganizationName": "Advanced Kidney Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", - "OrganizationName": "NWP Family Practice Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/beeaf417-04e2-4739-90f7-5b1ee92593b8", + "OrganizationName": "Veradigm Chief Medical Officer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", - "OrganizationName": "NWP Family Practice Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/beeaf417-04e2-4739-90f7-5b1ee92593b8", + "OrganizationName": "Veradigm Chief Medical Officer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ef6e8c78-48fe-42fa-bf81-e1dfef5b7d79", - "OrganizationName": "INFECTIOUS DISEASES ASSOCIATES OF NORTH FLORIDA,P.A", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f37f8ce1-b86c-459f-906f-c45cc06d08aa", + "OrganizationName": "LaToya Ntlabati Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ef6e8c78-48fe-42fa-bf81-e1dfef5b7d79", - "OrganizationName": "INFECTIOUS DISEASES ASSOCIATES OF NORTH FLORIDA,P.A", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f37f8ce1-b86c-459f-906f-c45cc06d08aa", + "OrganizationName": "LaToya Ntlabati Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2501e292-9e3b-4039-b62e-d9eb25976787", - "OrganizationName": "Long Hollow Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2bbe7c89-5a87-4c1c-82ca-fc8fc0ec174f", + "OrganizationName": "Vanessa Tapia Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2501e292-9e3b-4039-b62e-d9eb25976787", - "OrganizationName": "Long Hollow Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2bbe7c89-5a87-4c1c-82ca-fc8fc0ec174f", + "OrganizationName": "Vanessa Tapia Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e2e8391-4c80-45d0-b41e-34299d0ea3ff", - "OrganizationName": "Urogynecology Center of Huntsville, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d08b157-09d0-4d36-8a51-793a6c12432c", + "OrganizationName": "MD500", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e2e8391-4c80-45d0-b41e-34299d0ea3ff", - "OrganizationName": "Urogynecology Center of Huntsville, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d08b157-09d0-4d36-8a51-793a6c12432c", + "OrganizationName": "MD500", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ea06fb91-b7b3-4f4c-8864-5fc621454e07", - "OrganizationName": "Inner Vibrance, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/00d2c69d-f9e5-4e74-9898-db10b202cfe2", + "OrganizationName": "James Huang Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ea06fb91-b7b3-4f4c-8864-5fc621454e07", - "OrganizationName": "Inner Vibrance, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/00d2c69d-f9e5-4e74-9898-db10b202cfe2", + "OrganizationName": "James Huang Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/941c5463-9a63-4feb-9e8d-f8c04d527b99", - "OrganizationName": "Cristina Wyse Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4d789f8-bb3b-4f40-9a47-2e05d2b97b54", + "OrganizationName": "Jay B Stambler MD Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/941c5463-9a63-4feb-9e8d-f8c04d527b99", - "OrganizationName": "Cristina Wyse Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4d789f8-bb3b-4f40-9a47-2e05d2b97b54", + "OrganizationName": "Jay B Stambler MD Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/71137cd7-bc1d-4d44-bc10-88d995620a28", - "OrganizationName": "selma Rural Health Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a766b9f-8aba-4973-8615-a7704c52e8f3", + "OrganizationName": "SYDNEY SKINNER Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/71137cd7-bc1d-4d44-bc10-88d995620a28", - "OrganizationName": "selma Rural Health Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a766b9f-8aba-4973-8615-a7704c52e8f3", + "OrganizationName": "SYDNEY SKINNER Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f292a380-46b2-4174-9356-ff6ab93dcf87", - "OrganizationName": "Lozier Medicine LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2012d20f-2160-416e-ad91-2f80b93e6892", + "OrganizationName": "Right Help Psychiatry, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f292a380-46b2-4174-9356-ff6ab93dcf87", - "OrganizationName": "Lozier Medicine LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2012d20f-2160-416e-ad91-2f80b93e6892", + "OrganizationName": "Right Help Psychiatry, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ecc53789-0b4e-4d9d-8ee4-63c1ba6cef38", - "OrganizationName": "WellCare at Home", + "URL": "https://api.patientfusion.com/fhir/r4/v1/de42c681-3af7-48fe-91bd-17f4a9e891af", + "OrganizationName": "Stoyan Kokocharov MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ecc53789-0b4e-4d9d-8ee4-63c1ba6cef38", - "OrganizationName": "WellCare at Home", + "URL": "https://api.practicefusion.com/fhir/r4/v1/de42c681-3af7-48fe-91bd-17f4a9e891af", + "OrganizationName": "Stoyan Kokocharov MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34b2f31f-4f40-4aab-ac38-eee3ff7b880b", - "OrganizationName": "North Branch Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c9997855-9ffa-4647-b421-d0bf5a813c9f", + "OrganizationName": "Nancy Frederic Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34b2f31f-4f40-4aab-ac38-eee3ff7b880b", - "OrganizationName": "North Branch Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c9997855-9ffa-4647-b421-d0bf5a813c9f", + "OrganizationName": "Nancy Frederic Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3cecbe43-89a0-48b2-8c5a-81dc6e95f04e", - "OrganizationName": "erdr247,Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e139e1c4-7a08-4a79-ad41-80d9a1a1bad6", + "OrganizationName": "Family Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3cecbe43-89a0-48b2-8c5a-81dc6e95f04e", - "OrganizationName": "erdr247,Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e139e1c4-7a08-4a79-ad41-80d9a1a1bad6", + "OrganizationName": "Family Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3650fc17-33cd-4a32-8568-bea69f879943", - "OrganizationName": "BeWell Medical Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e579c219-691e-4e95-879d-5881a00c3f0e", + "OrganizationName": "Newman Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3650fc17-33cd-4a32-8568-bea69f879943", - "OrganizationName": "BeWell Medical Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e579c219-691e-4e95-879d-5881a00c3f0e", + "OrganizationName": "Newman Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d503a8ba-c3b5-434c-880f-770f3ba374a6", - "OrganizationName": "Keishawn Billing \u0026 Coding Services LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21e11c46-48e0-46b8-a15c-9d95647ad455", + "OrganizationName": "Clayton L. Allison, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d503a8ba-c3b5-434c-880f-770f3ba374a6", - "OrganizationName": "Keishawn Billing \u0026 Coding Services LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21e11c46-48e0-46b8-a15c-9d95647ad455", + "OrganizationName": "Clayton L. Allison, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20d9f6e6-a8a4-42ba-877e-a07010d64c14", - "OrganizationName": "Kimberly Rawlins, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d3ab4af1-c2bf-44b5-9e49-6b074cdf8b91", + "OrganizationName": "NAS Healthcare Consultancy, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20d9f6e6-a8a4-42ba-877e-a07010d64c14", - "OrganizationName": "Kimberly Rawlins, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d3ab4af1-c2bf-44b5-9e49-6b074cdf8b91", + "OrganizationName": "NAS Healthcare Consultancy, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1464af51-1d4e-4a79-890f-3c6f2d751aa2", - "OrganizationName": "NHK MD Consulting, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ecfd7f8e-7101-4e10-b85d-91dafea327a8", + "OrganizationName": "Goldome Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1464af51-1d4e-4a79-890f-3c6f2d751aa2", - "OrganizationName": "NHK MD Consulting, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ecfd7f8e-7101-4e10-b85d-91dafea327a8", + "OrganizationName": "Goldome Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4cdd2e8-1cd5-4291-be55-fc878c8c1c15", - "OrganizationName": "North Shore Health and Hyperbarics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6bbe7638-deba-4031-ba13-31571732a72d", + "OrganizationName": "Josefina Sta Romana MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4cdd2e8-1cd5-4291-be55-fc878c8c1c15", - "OrganizationName": "North Shore Health and Hyperbarics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6bbe7638-deba-4031-ba13-31571732a72d", + "OrganizationName": "Josefina Sta Romana MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b0109a6a-863b-410f-9ad8-8c5fa55fb9eb", - "OrganizationName": "Companion Health \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3ab3d107-1387-4146-89e8-8ca113d335bc", + "OrganizationName": "Shouping Li,MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b0109a6a-863b-410f-9ad8-8c5fa55fb9eb", - "OrganizationName": "Companion Health \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3ab3d107-1387-4146-89e8-8ca113d335bc", + "OrganizationName": "Shouping Li,MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/acec73a5-5157-46ac-be2d-70f851559c8d", - "OrganizationName": "Kimberly McMurray Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d0df93df-a7c1-4feb-8fb8-2afc168a5fd4", + "OrganizationName": "Tadao Ogura MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/acec73a5-5157-46ac-be2d-70f851559c8d", - "OrganizationName": "Kimberly McMurray Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d0df93df-a7c1-4feb-8fb8-2afc168a5fd4", + "OrganizationName": "Tadao Ogura MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6fac5487-bc98-424e-a5f4-07b92931ab97", - "OrganizationName": "Michigan Family Medicine and Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/42e133eb-054f-40a2-bb54-82c55fc00b3e", + "OrganizationName": "In Shape Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6fac5487-bc98-424e-a5f4-07b92931ab97", - "OrganizationName": "Michigan Family Medicine and Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/42e133eb-054f-40a2-bb54-82c55fc00b3e", + "OrganizationName": "In Shape Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1ab0feb5-4f7c-42c8-bb00-57ad9405f363", - "OrganizationName": "Vita Plus Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/45557feb-468e-4092-b5c3-37aa59ae9316", + "OrganizationName": "Rejuvé Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1ab0feb5-4f7c-42c8-bb00-57ad9405f363", - "OrganizationName": "Vita Plus Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/45557feb-468e-4092-b5c3-37aa59ae9316", + "OrganizationName": "Rejuvé Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f66e9509-7cd8-4d3f-95cd-349072e89d39", - "OrganizationName": "H\u0026M Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/410c2658-a5e6-43bc-acd4-004c6d6632be", + "OrganizationName": "Jane Kienle Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f66e9509-7cd8-4d3f-95cd-349072e89d39", - "OrganizationName": "H\u0026M Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/410c2658-a5e6-43bc-acd4-004c6d6632be", + "OrganizationName": "Jane Kienle Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4fe4b409-c3cc-408d-ba48-09459f0df667", - "OrganizationName": "Polaris Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b055e94-b3ec-44c9-91a8-36af8802b48f", + "OrganizationName": "R Zakaria physician PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4fe4b409-c3cc-408d-ba48-09459f0df667", - "OrganizationName": "Polaris Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b055e94-b3ec-44c9-91a8-36af8802b48f", + "OrganizationName": "R Zakaria physician PLLC", "NPIID": "", "OrganizationZipCode": "" } diff --git a/resources/prod_resources/TRIARQ_Practice_Services_EndpointSources.json b/resources/prod_resources/TRIARQ_Practice_Services_EndpointSources.json index 70402a24f..a14690172 100644 --- a/resources/prod_resources/TRIARQ_Practice_Services_EndpointSources.json +++ b/resources/prod_resources/TRIARQ_Practice_Services_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://fhir.myqone.com/api/FHIR/R4/", + "URL": "https://fhir.myqone.com/api/FHIR/R4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Tenzing_Medical_LLC_EndpointSources.json b/resources/prod_resources/Tenzing_Medical_LLC_EndpointSources.json new file mode 100644 index 000000000..40228ca2a --- /dev/null +++ b/resources/prod_resources/Tenzing_Medical_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://orovillehospital.api.dev.bridgepatientportal.com/fhir/r4", + "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 1645e4ce1..edf5281ed 100644 --- a/resources/prod_resources/Veradigm_EndpointSources.json +++ b/resources/prod_resources/Veradigm_EndpointSources.json @@ -61,13 +61,13 @@ "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/a05test", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/A05Test", "OrganizationName": "A05Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/a05test", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/A05Test", "OrganizationName": "A05Test", "NPIID": "", "OrganizationZipCode": "" @@ -1754,13 +1754,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/76113", - "OrganizationName": "Atlantic ObGyn Assoc Pc", + "OrganizationName": "Atlantic Ob/Gyn Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/76113", - "OrganizationName": "Atlantic ObGyn Assoc Pc", + "OrganizationName": "Atlantic Ob/Gyn Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -2790,6 +2790,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/57404", + "OrganizationName": "Cadillac Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/57404", "OrganizationName": "Cadillac Family Physicians", @@ -3530,25 +3536,25 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/56262", - "OrganizationName": "Center for Pain Management", + "OrganizationName": "Center For Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10032082", - "OrganizationName": "Center for Pain Management", + "OrganizationName": "Center For Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/56262", - "OrganizationName": "Center for Pain Management", + "OrganizationName": "Center For Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10032082", - "OrganizationName": "Center for Pain Management", + "OrganizationName": "Center For Pain Management", "NPIID": "", "OrganizationZipCode": "" }, @@ -3864,6 +3870,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10129748", + "OrganizationName": "Chegar Facial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10035701", + "OrganizationName": "Chegar Facial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10129748", + "OrganizationName": "Chegar Facial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10035701", + "OrganizationName": "Chegar Facial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/77363", "OrganizationName": "Cherokee Imaging Center", @@ -4254,6 +4284,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0005146", + "OrganizationName": "Clinton County Medical Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0005146", "OrganizationName": "Clinton County Medical Center PC", @@ -5514,6 +5550,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10035692", + "OrganizationName": "Dominion Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10035692", + "OrganizationName": "Dominion Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/11698", "OrganizationName": "Dominion Medical Assoc", @@ -6846,6 +6894,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10049942", + "OrganizationName": "Family Care Group of Thomson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10049942", + "OrganizationName": "Family Care Group of Thomson", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/76172", "OrganizationName": "Family Clinic Of Anahuac", @@ -8718,6 +8778,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10534842", + "OrganizationName": "Human Longevity, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10534842", + "OrganizationName": "Human Longevity, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/75554", "OrganizationName": "Humberto A Galleno Md Inc", @@ -9110,13 +9182,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/70435", - "OrganizationName": "Interventional Cardiology", + "OrganizationName": "Interventional Cardiology Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/70435", - "OrganizationName": "Interventional Cardiology", + "OrganizationName": "Interventional Cardiology Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -12463,38 +12535,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0000205", - "OrganizationName": "Nephrology Associates Of Lexington", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0000205", - "OrganizationName": "Nephrology Associates Of Lexington", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0008821", - "OrganizationName": "Nephrology Associates PA", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10028142", + "OrganizationName": "Nephrology Associates of DE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10028142", - "OrganizationName": "Nephrology Associates PA", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10028142", + "OrganizationName": "Nephrology Associates of DE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10028142", - "OrganizationName": "Nephrology Associates PA", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0000205", + "OrganizationName": "Nephrology Associates Of Lexington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0008821", - "OrganizationName": "Nephrology Associates PA", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0000205", + "OrganizationName": "Nephrology Associates Of Lexington", "NPIID": "", "OrganizationZipCode": "" }, @@ -12678,6 +12738,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10035369", + "OrganizationName": "NEUROSURGICAL ASSOCIATES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10035369", + "OrganizationName": "NEUROSURGICAL ASSOCIATES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10044387", "OrganizationName": "Nevada Orthopedic \u0026 Spine", @@ -12822,6 +12894,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10022251", + "OrganizationName": "North Atlanta Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10022251", + "OrganizationName": "North Atlanta Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10036016", "OrganizationName": "North Buncombe Family Medicine", @@ -13050,18 +13134,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10035701", - "OrganizationName": "Northside Ent", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10035701", - "OrganizationName": "Northside Ent", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10045838", "OrganizationName": "Northside Gastroenterology", @@ -13554,6 +13626,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/R4/fhir-OCC-FhirPoint-Echo?cust=10344843", + "OrganizationName": "Orthopedic Centers of Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/R4/open-OCC-FhirPoint-Echo?cust=10344843", + "OrganizationName": "Orthopedic Centers of Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10344843", "OrganizationName": "Orthopedic Centers of Colorado", @@ -14148,6 +14232,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/61705", + "OrganizationName": "Petoskey Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/61705", + "OrganizationName": "Petoskey Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10056409", "OrganizationName": "Petoskey Family Medicine", @@ -14468,13 +14564,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/76109", - "OrganizationName": "Premier Healthcare Assoc Pc", + "OrganizationName": "Premier Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/76109", - "OrganizationName": "Premier Healthcare Assoc Pc", + "OrganizationName": "Premier Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -16266,12 +16362,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/56472", + "OrganizationName": "Southeastern Primary Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10030148", "OrganizationName": "Southeastern Primary Care Specialists", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/56472", + "OrganizationName": "Southeastern Primary Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10030148", "OrganizationName": "Southeastern Primary Care Specialists", @@ -17850,6 +17958,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10070043", + "OrganizationName": "Think Whole Person Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10070043", + "OrganizationName": "Think Whole Person Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10043119", "OrganizationName": "Thomas \u0026 Thomas Medical Ltd", @@ -17864,13 +17984,13 @@ }, { "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": "" }, @@ -19044,6 +19164,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10055576", + "OrganizationName": "Westgate Family Physicians,P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10055576", + "OrganizationName": "Westgate Family Physicians,P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0006509", "OrganizationName": "Westglen Gastrointestinal Consultants", diff --git a/resources/prod_resources/athenahealth_Inc_EndpointSources.json b/resources/prod_resources/athenahealth_Inc_EndpointSources.json index e9b4dbc49..47c5c456c 100644 --- a/resources/prod_resources/athenahealth_Inc_EndpointSources.json +++ b/resources/prod_resources/athenahealth_Inc_EndpointSources.json @@ -1604,7 +1604,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TENNOVA HEART", + "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", "NPIID": "", "OrganizationZipCode": "" }, @@ -7160,7 +7178,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Penner, Dennis", + "OrganizationName": "CA - Wu, Tina", "NPIID": "", "OrganizationZipCode": "" }, @@ -8088,12 +8106,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Center For Internal Medicine (term)", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - LCS Healthcare Group", @@ -9488,13 +9500,31 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hood Medical Group", + "OrganizationName": "Brazos Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Granbury Hospital Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Granbury HB Medical Services", + "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", "NPIID": "", "OrganizationZipCode": "" }, @@ -10248,6 +10278,66 @@ "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", @@ -10640,7 +10730,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - CHS - PF Fayetteville Arkansas Hosp", + "OrganizationName": "Northwest Health Physicians' Specialty Hospital (a campus of Siloam Springs Regional Hospital", "NPIID": "", "OrganizationZipCode": "" }, @@ -11466,12 +11556,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MARSHFIELD MEDICAL CENTER - NEILLSVILLE", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Fremont Obstetrics \u0026 Gynecology", @@ -13620,18 +13704,6 @@ "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", @@ -16040,7 +16112,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Johsens, Karl", + "OrganizationName": "CA - Johsens/Negard", "NPIID": "", "OrganizationZipCode": "" }, @@ -16370,7 +16442,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BHS Physicians Network", + "OrganizationName": "Baptist Medical Network", "NPIID": "", "OrganizationZipCode": "" }, @@ -17772,12 +17844,6 @@ "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", @@ -17834,7 +17900,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Parking Way Pediatrics", + "OrganizationName": "TX - Focus on Family Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17888,7 +17954,31 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Vicksburg Clinic", + "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", "NPIID": "", "OrganizationZipCode": "" }, @@ -19832,43 +19922,145 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - CHS-North Okaloosa Med Ctr Clinic", + "OrganizationName": "Baker Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa RHC", + "OrganizationName": "Baker Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Arizona Urology", + "OrganizationName": "Bluewater Bay Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Putnam Pulmonary", + "OrganizationName": "Bluewater – Gateway Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Palisades Pediatrics", + "OrganizationName": "Express Medical Care of North Okaloosa Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Tomagwa Healthcare Ministries", + "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": "DYERSBURG CLINIC CORP", + "OrganizationName": "North Okaloosa Medical Center Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Medical Center – Transitional Care Unit", + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Putnam Pulmonary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Palisades Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tomagwa Healthcare Ministries", "NPIID": "", "OrganizationZipCode": "" }, @@ -19922,13 +20114,109 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SKYRIDGE CLINICAL ASSOCIATES LLC", + "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", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Medical Group Cleveland", + "OrganizationName": "Westside Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -21758,121 +22046,163 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MCNAIRY CLINIC CORP", + "OrganizationName": "TN - Associates In Womens Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MCNAIRY HOSPITAL CORPORATION", + "OrganizationName": "Elica Health Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Associates In Womens Health", + "OrganizationName": "AR - Five Rivers Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Elica Health Centers", + "OrganizationName": "KS - Pulmonary \u0026 Sleep Consultants KS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Five Rivers Medical Center", + "OrganizationName": "Kelly Lambeth CRNP, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Pulmonary \u0026 Sleep Consultants KS", + "OrganizationName": "PFCC, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kelly Lambeth CRNP, LLC", + "OrganizationName": "WA - Nourish Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PFCC, LLC", + "OrganizationName": "MN - Lifespark", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Nourish Wellness", + "OrganizationName": "Anderson Mill Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Lifespark", + "OrganizationName": "Brock Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Big Bend", + "OrganizationName": "Cedar Park Breast Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park", + "OrganizationName": "Cedar Park Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park Occupational Medicine", + "OrganizationName": "Cedar Park Neurology and Sleep Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hill Regional", + "OrganizationName": "Cedar Park OB/Gyn Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo", + "OrganizationName": "Cedar Park Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lone Star Medical Group", + "OrganizationName": "Cedar Park Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Minimally Invasive and Reconstructive Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ear Nose \u0026 Throat Associates of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Texas Pulmonary and Sleep Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family First Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NO LONGER IN USE", + "OrganizationName": "Hill County Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Texas", + "OrganizationName": "Hill County Surgical Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CHS Timberland Medical Group", + "OrganizationName": "Hill Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tomball - Affinity Medical Associates", + "OrganizationName": "Lone Star Children’s Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lone Star Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Diagnostic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Zapata Family Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -21908,19 +22238,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Health Seven Rivers", + "OrganizationName": "Bravera Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Toes on the Go", + "OrganizationName": "Bravera Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS Emporia Clinic - Southern Virginia Regional", + "OrganizationName": "Bravera Primary Care and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Toes on the Go", "NPIID": "", "OrganizationZipCode": "" }, @@ -21956,7 +22292,43 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS - Oak Hill Corp", + "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", "NPIID": "", "OrganizationZipCode": "" }, @@ -22080,12 +22452,6 @@ "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", @@ -22154,13 +22520,175 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - CHS Bullhead City Clinc Corp", + "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", + "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 Medical Group", + "OrganizationName": "Western Arizona Neuro-Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Orthopaedic and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Pulmonary Critical Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Vascular Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -22190,25 +22718,121 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - CHS - NW Allied Physicians, LLC", + "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", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHWEST ALLIED PHYSICIANS", + "OrganizationName": "QuickMed Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHWEST CARDIOLOGY LLC", + "OrganizationName": "QuickMed at Swan", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHWEST HBP MEDICAL SERVICES", + "OrganizationName": "QuickMed at Valencia", "NPIID": "", "OrganizationZipCode": "" }, @@ -22488,12 +23112,6 @@ "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", @@ -22662,18 +23280,6 @@ "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", @@ -22908,18 +23514,6 @@ "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", @@ -22986,18 +23580,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LW_OCCUPATIONAL MED", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Wales Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "IL - New Leaf Primary Care", @@ -23178,24 +23760,6 @@ "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", @@ -23294,7 +23858,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Foley Clinic Corp", + "OrganizationName": "Foley Clinic Corp.", "NPIID": "", "OrganizationZipCode": "" }, @@ -23384,13 +23948,103 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodward Clinic Company", + "OrganizationName": "AllianceHealth Beaver Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Leedey", + "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": "Woodward Health System", + "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", "NPIID": "", "OrganizationZipCode": "" }, @@ -23810,13 +24464,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS - Roswell Clinic Corp", + "OrganizationName": "Eastern New Mexico Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Roswell RHC", + "OrganizationName": "Roswell Clinic Corp.", "NPIID": "", "OrganizationZipCode": "" }, @@ -25788,6 +26442,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Emanuel Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Garden City Pediatric Associates LLC", @@ -29552,13 +30212,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - CHS - Pecos Valley Physician Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pecos Valley Physician Group-Hobbs", + "OrganizationName": "Pecos Valley Physician Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -29630,7 +30284,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "257 Station Avenue", + "OrganizationName": "349 Route 28", "NPIID": "", "OrganizationZipCode": "" }, @@ -32430,12 +33084,6 @@ "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", @@ -33740,7 +34388,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GADSDEN REGIONAL PHYSICIAN GROUP PRACTICE LLC", + "OrganizationName": "Gadsden Regional Physician Group Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Partners, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -35930,43 +36584,85 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - CHS PPSI Mem Hos of Salem Co Clinic", + "OrganizationName": "Incare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Incare, LLC", + "OrganizationName": "FL - Joseph S Chirillo MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Joseph S Chirillo MD", + "OrganizationName": "CT - Robert M. Smith, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Robert M. Smith, MD, LLC", + "OrganizationName": "TX - Medical Center Of East Houston", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Medical Center Of East Houston", + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Family Medicine – Tiny Town", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CLARKSVILLE PHYSICIAN SERVICES GP", + "OrganizationName": "Tennova Healthcare – Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - CHS - Gateway Health System Clinic", + "OrganizationName": "Tennova Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Medical Group Family Medicine and Women’s Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Surgery – Clarksville", "NPIID": "", "OrganizationZipCode": "" }, @@ -36462,24 +37158,6 @@ "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.", @@ -36704,79 +37382,319 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NHRHC_NAVARRO", + "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", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP - Hillsboro", + "OrganizationName": "Women’s Health Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP - Laredo", + "OrganizationName": "Woodland Heights Adult Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP Premier Care Physicians (Mesquite TX)", + "OrganizationName": "Woodland Heights Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP Scenic Mountain Medical Group", + "OrganizationName": "Woodland Heights Cardiothoracic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP- Brownwood", + "OrganizationName": "Woodland Heights Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP- College Station", + "OrganizationName": "Woodland Heights Family Practice at Gaslight", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP- Corsicana", + "OrganizationName": "Woodland Heights Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP- San Angelo", + "OrganizationName": "Woodland Heights Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP- Victoria", + "OrganizationName": "Woodland Heights Obstetrics \u0026 Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "REAP-Lufkin", + "OrganizationName": "Woodland Heights Primary Care at Dibol", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Reap - Abilene", + "OrganizationName": "Woodland Heights Primary Care at Livingston", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CHS - Regional Employee Assistance", + "OrganizationName": "Woodland Heights Women’s Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -38000,13 +38918,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS - Las Cruces Physician Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LAS CRUCES HB MEDICAL SERVICES, LLC", + "OrganizationName": "Mountain View Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -38156,13 +39068,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HATTIESBURG HB MEDICAL SERVICES", + "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", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wesley Physician Services, LLC", + "OrganizationName": "Wesley Physician Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -39674,19 +40598,67 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - CHS PPSI Siloam Clinic Company", + "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", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SILOAM SPRINGS OCCUPATIONAL MEDICINE", + "OrganizationName": "Siloam Springs Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Siloam Springs Clinic Company", + "OrganizationName": "Surgical Associates of Siloam Springs", "NPIID": "", "OrganizationZipCode": "" }, @@ -40008,12 +40980,6 @@ "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", @@ -41576,7 +42542,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Brian S Kressin DPM", + "OrganizationName": "Brian S. Kressin DPM", "NPIID": "", "OrganizationZipCode": "" }, @@ -41774,7 +42740,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Healthtopia", + "OrganizationName": "Healthtopia", "NPIID": "", "OrganizationZipCode": "" }, @@ -41922,12 +42888,6 @@ "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", @@ -44106,6 +45066,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clarus Eye Centre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laser \u0026 Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WA - Yakima Valley Family Clinic", @@ -45486,12 +46458,6 @@ "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", @@ -46008,12 +46974,6 @@ "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.", @@ -46436,7 +47396,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - MEDICAL SURGICAL SPECIALISTS OF KER", + "OrganizationName": "Medical Surgical Specialists of Kerrville", "NPIID": "", "OrganizationZipCode": "" }, @@ -48720,18 +49680,6 @@ "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", @@ -49116,6 +50064,30 @@ "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", @@ -50850,12 +51822,6 @@ "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", @@ -52196,7 +53162,55 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS South Arkansas Physician Services", + "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", "NPIID": "", "OrganizationZipCode": "" }, @@ -52640,2935 +53654,3487 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - CHS - NW Arkansas", + "OrganizationName": "Best Start Pediatric Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fort Smith", + "OrganizationName": "CareExpress", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Physicians", + "OrganizationName": "Maternal-Fetal Medicine Center of Northwest Arkansas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - West Alabama Womens Center Inc", + "OrganizationName": "Northwest Cardiac Rehab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - ALLIANCE HAND AND WRIST SURGERY PLL", + "OrganizationName": "Northwest Cardiac Rehab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Equipoise Physical Therapy LLC", + "OrganizationName": "Northwest Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - GREGORY E. STEMPKY, D.O., PLC", + "OrganizationName": "Northwest Cardiology – Bella Vista", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - LITTLE HOLLAND LLC", + "OrganizationName": "Northwest Cardiology – Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Flippo, Greg", + "OrganizationName": "Northwest Cardiology – Springdale", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - INSPIRE INTEGRATIVE WELLNESS AND CA", + "OrganizationName": "Northwest Center for Infectious Diseases", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS-Abilene Clinic", + "OrganizationName": "Northwest Convenient Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - ZAID ALJAHMI MEDICAL PRACTICE PLLC", + "OrganizationName": "Northwest Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - NORTH SHORE MEDICAL GROUP, PLLC", + "OrganizationName": "Northwest Family Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - St. Clair Pediatrics", + "OrganizationName": "Northwest Family Medicine and Obstetrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Neches Clinic, LLP", + "OrganizationName": "Northwest Family Medicine – Centerton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Integrated Digestive Partners, PA", + "OrganizationName": "Northwest Family Medicine – Eureka Springs", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SleepCare Consultants", + "OrganizationName": "Northwest Family Medicine – Lowell", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - COMPLETE HEALTH AT GREEN OAKS PLLC", + "OrganizationName": "Northwest Family Medicine – Midtown", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Seaside Wellness", + "OrganizationName": "Northwest Family Medicine – Southside", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - KEY VITALITY SOLUTIONS LLC", + "OrganizationName": "Northwest Family Medicine – Tuscany Square", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - MUSICK'S MEDICAL, PLLC", + "OrganizationName": "Northwest Gastroenterology – Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Polin Neurosurgery", + "OrganizationName": "Northwest Gastroenterology – Springdale", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - SIERRA WELLNESS LLC", + "OrganizationName": "Northwest Health \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Don Nicholas Jr MD", + "OrganizationName": "Northwest Health Bridge Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Eric I Feit MD", + "OrganizationName": "Northwest Health Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Dr. Jeannie Senior Care", + "OrganizationName": "Northwest Health Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Legacy Womens Health.", + "OrganizationName": "Northwest Heart and Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Advance Medical Group", + "OrganizationName": "Northwest Hospitalists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Los Lunas Family Practice", + "OrganizationName": "Northwest Internal Medicine – Springdale", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Kern Island Pain Medicine", + "OrganizationName": "Northwest Medical Plaza at Pinnacle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Triibe Medical", + "OrganizationName": "Northwest Medical Plaza at Sugar Creek", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - MILWAUKEE CARDIAC CARE, INC", + "OrganizationName": "Northwest Medical Plaza – Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - My Nurse Now, LLC", + "OrganizationName": "Northwest Medical Plaza – Eastside", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - BE WELL FAMILY CARE LLC", + "OrganizationName": "Northwest Medical Plaza – Fayetteville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Fademos Family Practice", + "OrganizationName": "Northwest Medical Plaza – Springdale", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Irwin Abraham MD", + "OrganizationName": "Northwest Medical Plaza – Wedington", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - LOVE FAMILY HEALTHCARE, PLLC", + "OrganizationName": "Northwest Neonatal Graduate Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Salma Mazhar, MD, PA", + "OrganizationName": "Northwest Neonatology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CoPilotIQ", + "OrganizationName": "Northwest Neurology – Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CopilotIQ www.CopilotIQ.com", + "OrganizationName": "Northwest Neurology – Fayetteville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FAMILY HEALTH CENTERS OF BALTIMORE, INC.", + "OrganizationName": "Northwest Orthopedics – Springdale", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - K. KYLE BALLEW, D.P.M., P.A.", + "OrganizationName": "Northwest Pediatric Hospitalist", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Bone \u0026 Joint Specialists", + "OrganizationName": "Northwest Primary Care – Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Hometown Medical", + "OrganizationName": "Northwest Primary Care – Centerton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - WELLNESS FIRST, PLLC", + "OrganizationName": "Northwest Primary Care – Har Ber Meadows", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Coastal Health Institute", + "OrganizationName": "Northwest Primary Care – Jones Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Atlas Infectious Disease", + "OrganizationName": "Northwest Primary Care – Springdale", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Crew Health", + "OrganizationName": "Northwest Primary Care – Willow Creek", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Wellsprings Healthcare Clinic", + "OrganizationName": "Northwest Pulmonology \u0026 Sleep Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - PRIMARY CARE AT HOME, INC.", + "OrganizationName": "Northwest Pulmonology – Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Grace Medical Center, LLC", + "OrganizationName": "Northwest Quick Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Glow Women's Health", + "OrganizationName": "Northwest Rehab and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Aurora Healthcare LLC", + "OrganizationName": "Northwest Rehab and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Alternative Integrative Medicine, I", + "OrganizationName": "Northwest Senior Health Health at Bella Vista", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - EVERYTHING SPEECH LLC DBA Ndoscopy", + "OrganizationName": "Northwest Senior Health at Schmieding", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Arkansas Pain Specialists", + "OrganizationName": "Northwest Senior Health at Sugar Creek", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - ROSE BOWL AQUATICS CENTER", + "OrganizationName": "Northwest Senior Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Folx Health", + "OrganizationName": "Northwest Specialty Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - FIRSTLINE TJS, LLC", + "OrganizationName": "Northwest Sports, Spine and Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Richard R Ondrizek MD, PA", + "OrganizationName": "Northwest Surgical Associates – Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Mothers and Daughters Womens Center", + "OrganizationName": "Northwest Women’s Specialty Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - USMAN AHMED MD, PLLC", + "OrganizationName": "Surgical Associates of Northwest", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Resolute Medical Care LLC", + "OrganizationName": "The Children’s Clinic at Bentonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Simon Wellness", + "OrganizationName": "The Children’s Clinic at HarBer Meadows", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pienkowski MD Clinic", + "OrganizationName": "The Children’s Clinic at Springdale", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Ottawa Physician Practices", + "OrganizationName": "The Family Clinic – A Part of Northwest Family Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Sandra L Whisler MD, MS, LLC", + "OrganizationName": "The Martinez Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DELTA GASTROENTEROLOGY, PC", + "OrganizationName": "The Neurosurgery Center at Northwest Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ENDO", + "OrganizationName": "The Neurosurgery Center at Northwest Health System", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "InFocus Urgent Care", + "OrganizationName": "The Orthopedic Center at Northwest", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - InFocus Urgent Care - Cavi Cool Spa", + "OrganizationName": "The Women’s Center on the Parkway", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Flourish Pediatrics", + "OrganizationName": "Vein Care Center at Northwest", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - INFINITY HEALTH AND WELLNESS LLC", + "OrganizationName": "Willow Creek Women’s Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - New Era Wellness Center", + "OrganizationName": "Women’s Health and Diagnostic Center of Northwest", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - ELITE CONCIERGE MEDICINE LLC", + "OrganizationName": "AL - West Alabama Womens Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Inspire Pulmonary", + "OrganizationName": "TX - ALLIANCE HAND AND WRIST SURGERY PLL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Canyon Creek Clinic", + "OrganizationName": "NJ - Equipoise Physical Therapy LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - mynurse.ai", + "OrganizationName": "MI - GREGORY E. STEMPKY, D.O., PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Hurstbourne Family Care", + "OrganizationName": "IL - LITTLE HOLLAND LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Horsham Foot and Ankle", + "OrganizationName": "AL - Flippo, Greg", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - PISCATAWAY HEALTHCARE, P.C.", + "OrganizationName": "MI - INSPIRE INTEGRATIVE WELLNESS AND CA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Andreli Professional Advising and R", + "OrganizationName": "MI - ZAID ALJAHMI MEDICAL PRACTICE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Associates in Health \u0026 Wellness Corp", + "OrganizationName": "NY - NORTH SHORE MEDICAL GROUP, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Hamid Mir M.D., Inc..", + "OrganizationName": "IL - St. Clair Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - La Salud Medical Center", + "OrganizationName": "TX - Neches Clinic, LLP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Pediatric House Calls", + "OrganizationName": "NY - Integrated Digestive Partners, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Matter Health of Tennessee", + "OrganizationName": "SleepCare Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Matter Health", + "OrganizationName": "TX - COMPLETE HEALTH AT GREEN OAKS PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Abidi Family Practice", + "OrganizationName": "FL - Seaside Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - FAMILY \u0026 INTERNAL MEDICINE ASSOCIAT", + "OrganizationName": "MD - KEY VITALITY SOLUTIONS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Lee Med Health center", + "OrganizationName": "AZ - MUSICK'S MEDICAL, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KIWI VIRTUAL HEALTH CARE PLLC", + "OrganizationName": "OR - Polin Neurosurgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pelikan Health", + "OrganizationName": "NV - SIERRA WELLNESS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Capital Surgeons", + "OrganizationName": "TX - Don Nicholas Jr MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Atracare", + "OrganizationName": "CA - Eric I Feit MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Atracare Mental Health", + "OrganizationName": "TN - Dr. Jeannie Senior Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Rehab Ready, LLC", + "OrganizationName": "NV - Legacy Womens Health.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bridge Consultants", + "OrganizationName": "NJ - Advance Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wholistic Pediatricians", + "OrganizationName": "NM - Los Lunas Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - RULA AL-AOUAR, PLC", + "OrganizationName": "CA - Kern Island Pain Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Aziz Clinic", + "OrganizationName": "MD - Triibe Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Andrew J. Hutchinson, DO, PA", + "OrganizationName": "WI - MILWAUKEE CARDIAC CARE, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dr. Dagoberto Balderas D.O.", + "OrganizationName": "GA - My Nurse Now, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - DR DAYHIM, PLLC", + "OrganizationName": "AZ - BE WELL FAMILY CARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Elder Care First, Inc.", + "OrganizationName": "PA - Fademos Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Village Health Telehealth", + "OrganizationName": "NY - Irwin Abraham MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Online Spine Doc", + "OrganizationName": "TX - LOVE FAMILY HEALTHCARE, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Beautiful Beginnings \u0026 Beyond", + "OrganizationName": "TX - Salma Mazhar, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Roxane Bremen DO, PC", + "OrganizationName": "CoPilotIQ", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - ASK ALLIANCE HEALTHCARE, PLLC", + "OrganizationName": "CopilotIQ www.CopilotIQ.com", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Jan D Tepper MD DPM", + "OrganizationName": "FAMILY HEALTH CENTERS OF BALTIMORE, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Dr. Ozone", + "OrganizationName": "TX - K. KYLE BALLEW, D.P.M., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Miracle Medical, LLC", + "OrganizationName": "IN - Bone \u0026 Joint Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Lex Kidney Care PLLC", + "OrganizationName": "NC - Hometown Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Haven Health", + "OrganizationName": "TX - WELLNESS FIRST, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kirksville Clinic", + "OrganizationName": "FL - Coastal Health Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kirksville RHC", + "OrganizationName": "FL - Atlas Infectious Disease", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - UNITED URGENT CARE GROUP PC", + "OrganizationName": "FL - Crew Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Joel S Rhoton MD", + "OrganizationName": "FL - Wellsprings Healthcare Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Pioneer Family Medicine", + "OrganizationName": "IN - PRIMARY CARE AT HOME, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Robert Hustrulid MD", + "OrganizationName": "VA - Grace Medical Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - TEXAS MINOR EMERGENCY CLINIC LLC", + "OrganizationName": "NM - Glow Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - 417 Sports Medicine And Orthopedics", + "OrganizationName": "ME - Aurora Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Ability Plus Mental Health", + "OrganizationName": "RI - Alternative Integrative Medicine, I", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Snowy Range Kidney Care", + "OrganizationName": "NY - EVERYTHING SPEECH LLC DBA Ndoscopy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - True U Clinic", + "OrganizationName": "AR - Arkansas Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Trinity Psychiatric Services LLC", + "OrganizationName": "CA - ROSE BOWL AQUATICS CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Gentle Care Consultants", + "OrganizationName": "Folx Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - BASIN CLINIC, INC", + "OrganizationName": "IN - FIRSTLINE TJS, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Diabetes Self care Management Insti", + "OrganizationName": "TX - Richard R Ondrizek MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BLUESKY TELEPSYCH INC", + "OrganizationName": "NJ - Mothers and Daughters Womens Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - ORANGE MEDICAL ASSOCIATES, LLP", + "OrganizationName": "MI - USMAN AHMED MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - ProMed Healthcare", + "OrganizationName": "MD - Resolute Medical Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - CONNECTION MEDICAL CLINIC", + "OrganizationName": "OK - Simon Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - EJ Health Solutions", + "OrganizationName": "Pienkowski MD Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - OPARA, P.A.", + "OrganizationName": "North Ottawa Physician Practices", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Wellness Connect Go Beyond Medicine", + "OrganizationName": "NM - Sandra L Whisler MD, MS, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Dr. Kimberly Kraus, LLC -Start Up", + "OrganizationName": "DELTA GASTROENTEROLOGY, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - KANWAR IQBAL SINGH GILL, M.D., P.C.", + "OrganizationName": "ENDO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - NPMD, Inc.", + "OrganizationName": "InFocus Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Community Urgent Care Plus", + "OrganizationName": "NJ - InFocus Urgent Care - Cavi Cool Spa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Milestones Behavioral Health", + "OrganizationName": "GA - Flourish Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Inspired Spine SurgCenter", + "OrganizationName": "TX - INFINITY HEALTH AND WELLNESS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Jeffrey Smith, MD", + "OrganizationName": "TX - New Era Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Premier Mobile Health Services", + "OrganizationName": "NJ - ELITE CONCIERGE MEDICINE LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Harvey Kohn MD", + "OrganizationName": "SC - Inspire Pulmonary", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Redbird Pediatrics", + "OrganizationName": "OR - Canyon Creek Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - DiFranco Family Foot Care", + "OrganizationName": "CA - mynurse.ai", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VT - SURVIVAL TELEPSYCHIATRY SERVICES PL", + "OrganizationName": "KY - Hurstbourne Family Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Central Arkansas Family Clinic", + "OrganizationName": "Horsham Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Tennessee Telederm", + "OrganizationName": "NJ - PISCATAWAY HEALTHCARE, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Adriana C. Barcelo", + "OrganizationName": "MD - Andreli Professional Advising and R", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Zoe Ann Weinstein", + "OrganizationName": "Associates in Health \u0026 Wellness Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Rapha Family Medicine", + "OrganizationName": "CA - Hamid Mir M.D., Inc..", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Functional Physical Therapy LLC", + "OrganizationName": "FL - La Salud Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Melville Medicine", + "OrganizationName": "NC - Pediatric House Calls", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Eclipse Clinic, PLLC", + "OrganizationName": "Matter Health of Tennessee", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Restorative Family Medicine", + "OrganizationName": "TN - Matter Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Breakthrough Regenerative Ortho", + "OrganizationName": "AL - Abidi Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Akins mobile health \u0026 Clinical cons", + "OrganizationName": "KY - FAMILY \u0026 INTERNAL MEDICINE ASSOCIAT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Dunedin Peds", + "OrganizationName": "FL - Lee Med Health center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Landis Services", + "OrganizationName": "KIWI VIRTUAL HEALTH CARE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Village of Healing", + "OrganizationName": "Pelikan Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Care Solution, LLC", + "OrganizationName": "Capital Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Pediatric Healthcare Associates", + "OrganizationName": "Atracare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Imperial Healthcare LLC", + "OrganizationName": "Atracare Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Peds First Healthcare LLC", + "OrganizationName": "MS - Rehab Ready, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Tiero LLC", + "OrganizationName": "Bridge Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - NEW BEGINNINGS RECOVERY \u0026 FAMILY PR", + "OrganizationName": "Wholistic Pediatricians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - LJ Gottschalk, LLC", + "OrganizationName": "MI - RULA AL-AOUAR, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ND - Sonia Takacs-NP", + "OrganizationName": "IN - Aziz Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Elite Healthcare Providers", + "OrganizationName": "NC - Andrew J. Hutchinson, DO, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Nicholas Becker ND", + "OrganizationName": "TX - Dr. Dagoberto Balderas D.O.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Sunshine Urgent Care", + "OrganizationName": "MI - DR DAYHIM, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Broadview Medical Center", + "OrganizationName": "FL - Elder Care First, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VT - WELL-NATURED PLLC", + "OrganizationName": "WA - Village Health Telehealth", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - UNITED PHYSICIANS GROUP LLC", + "OrganizationName": "OH - Online Spine Doc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - PEDIATRIC ASSOCIATES, LLC", + "OrganizationName": "OH - Beautiful Beginnings \u0026 Beyond", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Dr. Katie Ostrom, MD", + "OrganizationName": "MO - Roxane Bremen DO, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "La Vista Health Center", + "OrganizationName": "AZ - ASK ALLIANCE HEALTHCARE, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - QUEST MOBILE VISION", + "OrganizationName": "CA - Jan D Tepper MD DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Coastal Plastic Surgery", + "OrganizationName": "CA - Dr. Ozone", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Metrolina Internal Medicine", + "OrganizationName": "MD - Miracle Medical, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - AMG Medical Tucson LLC", + "OrganizationName": "KY - Lex Kidney Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Neuro Synchrony", + "OrganizationName": "WA - Haven Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Sisu Health", + "OrganizationName": "Family Health Care Center of Edina", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Moya Martin, LLC", + "OrganizationName": "Northeast Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Alaska Breast Care \u0026 Surgery", + "OrganizationName": "Northeast Regional Heart Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Pain Institute of Clarksville", + "OrganizationName": "Northeast Regional Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Wind River Heart Clinic LLC", + "OrganizationName": "Northeast Regional MedicalCenter", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sleep Health MD", + "OrganizationName": "Northeast Regional Orthopedics \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - ESSENTIALMD, PLLC", + "OrganizationName": "MI - UNITED URGENT CARE GROUP PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Steddy Healthcare NP in Adult Healt", + "OrganizationName": "TX - Joel S Rhoton MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Dany Vexler/Medical Concierge", + "OrganizationName": "WA - Pioneer Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - DR4ALL MEDICAL LLC", + "OrganizationName": "WA - Robert Hustrulid MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Ross \u0026 Associates Medical Partners", + "OrganizationName": "TX - TEXAS MINOR EMERGENCY CLINIC LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Rapid Care Inc.", + "OrganizationName": "MO - 417 Sports Medicine And Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rapid Care", + "OrganizationName": "FL - Ability Plus Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Advanced Surgical Associates of Nor", + "OrganizationName": "WY - Snowy Range Kidney Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Delta Med Clinic LLC", + "OrganizationName": "CO - True U Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Seasons Family Medicine", + "OrganizationName": "FL - Trinity Psychiatric Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - STONY POINT MEDICAL, P.C.", + "OrganizationName": "IL - Gentle Care Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Beaches Pediatrics", + "OrganizationName": "CO - BASIN CLINIC, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Nicolas Manriquez DPM", + "OrganizationName": "MD - Diabetes Self care Management Insti", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Jeffrey D Larson LLC", + "OrganizationName": "BLUESKY TELEPSYCH INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PJG Medical", + "OrganizationName": "NY - ORANGE MEDICAL ASSOCIATES, LLP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "YourPath", + "OrganizationName": "NC - ProMed Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Joint Pain and Orthopedics", + "OrganizationName": "IN - CONNECTION MEDICAL CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - INTERNAL MEDICINE ASSOCIATES OF ROC", + "OrganizationName": "IL - EJ Health Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Cross River Cardiology", + "OrganizationName": "TX - OPARA, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Space City Medical", + "OrganizationName": "RI - Wellness Connect Go Beyond Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - LIVINGSPRING FAMILY MEDICAL CENTER", + "OrganizationName": "OH - Dr. Kimberly Kraus, LLC -Start Up", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IA - Midwest Medical", + "OrganizationName": "NY - KANWAR IQBAL SINGH GILL, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Julia Gross", + "OrganizationName": "CA - NPMD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Amazing Grace Health LLC", + "OrganizationName": "OH - Community Urgent Care Plus", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - SOS MOBILE MEDICAL CARE LLC", + "OrganizationName": "IL - Milestones Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Pathfinder Counseling LLC", + "OrganizationName": "MN - Inspired Spine SurgCenter", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Healthier Way IV Solutions", + "OrganizationName": "TX - Jeffrey Smith, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - Medical Procedures of Wisconsin", + "OrganizationName": "FL - Premier Mobile Health Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - ShallOrtho, PLLC", + "OrganizationName": "NC - Harvey Kohn MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Columbus Regional (FPC/OPC)", + "OrganizationName": "IL - Redbird Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - MIND OVER MATTER MENTAL HEALTH, PLL", + "OrganizationName": "PA - DiFranco Family Foot Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - The Insomnia And Sleep Institute of", + "OrganizationName": "VT - SURVIVAL TELEPSYCHIATRY SERVICES PL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Pacific Pain Physicians", + "OrganizationName": "AR - Central Arkansas Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - Women's Wellness of Southern Delawa", + "OrganizationName": "TN - Tennessee Telederm", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Berger, Jonathan B MD", + "OrganizationName": "AZ - Adriana C. Barcelo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - FORWARD CARE FAMILY PRACTICE", + "OrganizationName": "NY - Zoe Ann Weinstein", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Pearl Women's Center - Main Clinic", + "OrganizationName": "NY - Rapha Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Uncharted Territory Mental Health S", + "OrganizationName": "PA - Functional Physical Therapy LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - PRIME TELECARE LLC", + "OrganizationName": "TX - Melville Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Alliance Senior Health", + "OrganizationName": "TX - Eclipse Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - TEXAS DIABETES AND THYROID CLINIC,", + "OrganizationName": "TN - Restorative Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - 4 Your Health", + "OrganizationName": "CO - Breakthrough Regenerative Ortho", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Keays Medical Group", + "OrganizationName": "AK - Akins mobile health \u0026 Clinical cons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - ENDOCRINOLOGY AND DIABETES OF GEORG", + "OrganizationName": "FL - Dunedin Peds", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Generations Medical Center", + "OrganizationName": "VA - Landis Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CY Pain and Rehab PLLC", + "OrganizationName": "OH - Village of Healing", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - UNITED FAMILY MEDICAL CENTER, INC.", + "OrganizationName": "MD - Care Solution, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Innovative Neurology, Inc.", + "OrganizationName": "AZ - Pediatric Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Instaclinic", + "OrganizationName": "SC - Imperial Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Bluerock Care", + "OrganizationName": "VA - Peds First Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Malibu Urgent Care", + "OrganizationName": "DC - Tiero LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Charles E. Baldwin, MD, PA", + "OrganizationName": "AZ - NEW BEGINNINGS RECOVERY \u0026 FAMILY PR", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Astra Health and Wellness", + "OrganizationName": "CO - LJ Gottschalk, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Synergy Integrative Headache Center", + "OrganizationName": "ND - Sonia Takacs-NP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SD - Danielle Hohm FNP Family Wellness C", + "OrganizationName": "LA - Elite Healthcare Providers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Purcell, Kulnarin", + "OrganizationName": "OR - Nicholas Becker ND", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HomeTown Family Health \u0026 Wellness", + "OrganizationName": "FL - Sunshine Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PREMIER PEDIATRICS OF INDIANA, LLC", + "OrganizationName": "IN - Broadview Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Prairie Winds Family Care", + "OrganizationName": "VT - WELL-NATURED PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Southside Pain Specialists, P.C.", + "OrganizationName": "AZ - UNITED PHYSICIANS GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Winning Health Wellness LLC", + "OrganizationName": "CT - PEDIATRIC ASSOCIATES, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - COMPLEX HEALTHCARE OF DES PERES, LL", + "OrganizationName": "AK - Dr. Katie Ostrom, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Olympic Medical", + "OrganizationName": "La Vista Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Kaufman Allergy Asthma and Immunolo", + "OrganizationName": "OR - QUEST MOBILE VISION", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Atlas Pain and Spine, PLLC", + "OrganizationName": "NC - Carolina Coastal Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Family Medicine for Health Equity", + "OrganizationName": "NC - Metrolina Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ReclaimAbility Pain Services", + "OrganizationName": "AZ - AMG Medical Tucson LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Minot Health Clinic", + "OrganizationName": "FL - Neuro Synchrony", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - TREE OF LIFE INTEGRATIVE FAMILY MED", + "OrganizationName": "WA - Sisu Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Geaux Fight Physical Therapy", + "OrganizationName": "FL - Moya Martin, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Vital Care Endocrinology, LLC", + "OrganizationName": "AK - Alaska Breast Care \u0026 Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - FISHERS DIRECT FAMILY CARE LLC", + "OrganizationName": "TN - Pain Institute of Clarksville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - World Spine and orthopedics", + "OrganizationName": "WY - Wind River Heart Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Ali M Alsaadi, M.D. P.C.", + "OrganizationName": "CA - Sleep Health MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - COLLABORATIVE PAIN MANAGEMENT, PLLC", + "OrganizationName": "OK - ESSENTIALMD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Neurology Associates", + "OrganizationName": "NY - Steddy Healthcare NP in Adult Healt", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Infectious Diseases Associates", + "OrganizationName": "CO - Dany Vexler/Medical Concierge", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Urosouth PLLC", + "OrganizationName": "NJ - DR4ALL MEDICAL LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Kidz Planet Urgent Care", + "OrganizationName": "GA - Ross \u0026 Associates Medical Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - The Caring Clinic", + "OrganizationName": "OK - Rapid Care Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Wells Collaborative Health", + "OrganizationName": "Rapid Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Solid Rock Solutions", + "OrganizationName": "MN - Advanced Surgical Associates of Nor", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - CIRCLES HEALTHCARE LLC", + "OrganizationName": "LA - Delta Med Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Practice of Litchfield", + "OrganizationName": "TN - Seasons Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LITCHFIELD LASER SKIN CARE", + "OrganizationName": "NY - STONY POINT MEDICAL, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Reside Health", + "OrganizationName": "FL - Beaches Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Atlantic Internal Medicine", + "OrganizationName": "TX - Nicolas Manriquez DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NH - NORTH COUNTRY PHYSICAL THERAPY \u0026 WE", + "OrganizationName": "Jeffrey D Larson LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - CANDYCE WILLIAMS, M.D., P.L.C.", + "OrganizationName": "PJG Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Mizell Memorial Hospital", + "OrganizationName": "YourPath", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Pooja Amy Shah MD", + "OrganizationName": "TX - Joint Pain and Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - LAWTON GENERAL SURGERY, P.C.", + "OrganizationName": "MI - INTERNAL MEDICINE ASSOCIATES OF ROC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Cannabis Clinic", + "OrganizationName": "NC - Cross River Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Katherine Kemp dba Legacy Behaviora", + "OrganizationName": "TX - Space City Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Valence Health Care", + "OrganizationName": "TX - LIVINGSPRING FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Life Family Healthcare", + "OrganizationName": "IA - Midwest Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BEVERLYMEDICAL SLEEP CENTER \u0026 NEURODIAGNOSTIC, INC", + "OrganizationName": "NY - Julia Gross", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RMC", + "OrganizationName": "MN - Amazing Grace Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Holistic Whole Health", + "OrganizationName": "FL - SOS MOBILE MEDICAL CARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Cederquist Medical Wellness Center", + "OrganizationName": "NC - Pathfinder Counseling LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - SPECIALTY EYECARE OF SOUTH ARKANSAS", + "OrganizationName": "TX - Healthier Way IV Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Princeton Ear, Nose \u0026 Throat, P.C.", + "OrganizationName": "WI - Medical Procedures of Wisconsin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - FIX ME MD P.C.", + "OrganizationName": "VA - ShallOrtho, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Willow Health", + "OrganizationName": "GA - Columbus Regional (FPC/OPC)", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VT - DR. NICOLE KEARNEY L.L.C.", + "OrganizationName": "AZ - MIND OVER MATTER MENTAL HEALTH, PLL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - CAROL PAPPAS MD", + "OrganizationName": "AZ - The Insomnia And Sleep Institute of", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - VERTRAE, INC.", + "OrganizationName": "CA - Pacific Pain Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Quality Healthcare Services", + "OrganizationName": "DE - Women's Wellness of Southern Delawa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Down Home Medical", + "OrganizationName": "FL - Berger, Jonathan B MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MT - Wells Wellness", + "OrganizationName": "AZ - FORWARD CARE FAMILY PRACTICE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Destiny Total Healthcare", + "OrganizationName": "OR - Pearl Women's Center - Main Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CAMPBELL UNIVERSITY HEALTH CENTER LLC", + "OrganizationName": "TX - Uncharted Territory Mental Health S", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHILDREN'S NATIONAL CARDIOLOGY RICHMOND", + "OrganizationName": "TX - PRIME TELECARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Marshfield Medical Center-Dickinson", + "OrganizationName": "AR - Alliance Senior Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - SIA-Specialty Infusion LLC", + "OrganizationName": "TX - TEXAS DIABETES AND THYROID CLINIC,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mindful Behavioral Healthcare", + "OrganizationName": "MD - 4 Your Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Joy Rich Healthcare Center", + "OrganizationName": "WA - Keays Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Pivotal Care Partnership", + "OrganizationName": "GA - ENDOCRINOLOGY AND DIABETES OF GEORG", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - INTEGRATED HEALTH \u0026 WELLNESS CENTER", + "OrganizationName": "NV - Generations Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Wadatika Health Center", + "OrganizationName": "TX - CY Pain and Rehab PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - CANTON OB-GYN GROUP P.L.C.", + "OrganizationName": "GA - UNITED FAMILY MEDICAL CENTER, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Thomas P Melancon, MD LLC", + "OrganizationName": "CA - Innovative Neurology, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Athens Surgery Center LLC", + "OrganizationName": "WY - Instaclinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JASPER SURGERY CENTER LLC", + "OrganizationName": "DC - Bluerock Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NEWNAN SURGERY CENTER", + "OrganizationName": "CA - Malibu Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHEAST GEORGIA SURGERY CENTER, LLC", + "OrganizationName": "TX - Charles E. Baldwin, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SOUTHEASTERN INTERVENTIONAL PAIN ASC LLC", + "OrganizationName": "UT - Astra Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SOUTHERN PAIN AND SPINE ASSOCIATES, LLC", + "OrganizationName": "IL - Synergy Integrative Headache Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southern Injury Specialists, LLC", + "OrganizationName": "SD - Danielle Hohm FNP Family Wellness C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Bulverde Medicine", + "OrganizationName": "MO - Purcell, Kulnarin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CORE - NAO - ANSS", + "OrganizationName": "HomeTown Family Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Center for Bone and Joint Surgery", + "OrganizationName": "PREMIER PEDIATRICS OF INDIANA, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopedic \u0026 Spine Centers of Wisconsin", + "OrganizationName": "KS - Prairie Winds Family Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopedic Center of Florida", + "OrganizationName": "AL - Southside Pain Specialists, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Premier Ortho \u0026 Philadelphia Hand to Shoulder", + "OrganizationName": "SC - Winning Health Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southeast Orthopedic Specialists", + "OrganizationName": "TX - COMPLEX HEALTHCARE OF DES PERES, LL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Swift Institute", + "OrganizationName": "WA - Olympic Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The CORE Institute MI", + "OrganizationName": "VA - Kaufman Allergy Asthma and Immunolo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - MICHIGAN PEDIATRIC ENDOCRINE AND DI", + "OrganizationName": "KY - Atlas Pain and Spine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - K \u0026 L Orthopedics", + "OrganizationName": "CO - Family Medicine for Health Equity", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Arise Behavioral Health \u0026 Wellness", + "OrganizationName": "ReclaimAbility Pain Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Southern Family WalkIn", + "OrganizationName": "Minot Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Cody Clinic, P.C.", + "OrganizationName": "NJ - TREE OF LIFE INTEGRATIVE FAMILY MED", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ID - Thrive Behavioral Health", + "OrganizationName": "LA - Geaux Fight Physical Therapy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - REVIVEMD305", + "OrganizationName": "VA - Vital Care Endocrinology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - BLUE WATER CHILDREN'S HEALTH CARE", + "OrganizationName": "IN - FISHERS DIRECT FAMILY CARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Jose Castaneda MD PA", + "OrganizationName": "GA - World Spine and orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Chicago Nurse Midwife", + "OrganizationName": "MI - Ali M Alsaadi, M.D. P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Bear Creek Clinic, P.C.", + "OrganizationName": "VA - COLLABORATIVE PAIN MANAGEMENT, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Jesse C. Delee MD PA", + "OrganizationName": "NC - Carolina Neurology Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Personalized and Restorative Wellne", + "OrganizationName": "Infectious Diseases Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Jennifer Steel - start up", + "OrganizationName": "AZ - Urosouth PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Richard Michal,M.D., PLLC", + "OrganizationName": "AL - Kidz Planet Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MT - Sound Diagnostics", + "OrganizationName": "GA - The Caring Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Strong Mental Health, PLLC", + "OrganizationName": "OR - Wells Collaborative Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Carolina Pines ENT", + "OrganizationName": "Solid Rock Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Highland Neurology", + "OrganizationName": "MD - CIRCLES HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - CKZ Direct Primary Care", + "OrganizationName": "Family Practice of Litchfield", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - COMMUNITY CARE RESOURCES INC", + "OrganizationName": "LITCHFIELD LASER SKIN CARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - THE WHOLE-ISTIC YOU, LLC", + "OrganizationName": "NY - Reside Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS PPSI Ronceverte Physician Group", + "OrganizationName": "VA - Atlantic Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Goodman, Samantha", + "OrganizationName": "NH - NORTH COUNTRY PHYSICAL THERAPY \u0026 WE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Allen Massihi Podiatric Inc.", + "OrganizationName": "AZ - CANDYCE WILLIAMS, M.D., P.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Xiao-Mei Zeng, M.D., P.A.", + "OrganizationName": "AL - Mizell Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Health And Glow Primary Care", + "OrganizationName": "NY - Pooja Amy Shah MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Chapmanville Medical Center", + "OrganizationName": "OK - LAWTON GENERAL SURGERY, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AJRC_Arthritis \u0026 Joint Replacement Cntr of Reading", + "OrganizationName": "TX - Texas Cannabis Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AOOR_Advanced Orthopaedics of Reading", + "OrganizationName": "ME - Katherine Kemp dba Legacy Behaviora", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "COA_Commonwealth Orthopaedics", + "OrganizationName": "WY - Valence Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KSP_Keystone Spine and Pain Management Center", + "OrganizationName": "NM - Life Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Keystone Ortho", + "OrganizationName": "BEVERLYMEDICAL SLEEP CENTER \u0026 NEURODIAGNOSTIC, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Anderson Hills Pediatrics", + "OrganizationName": "RMC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - New Image Primary Care", + "OrganizationName": "MD - Holistic Whole Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - RIVER OAKS PRIMARY CARE PLLC", + "OrganizationName": "FL - Cederquist Medical Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Tidewater Lung and Sleep Center", + "OrganizationName": "AR - SPECIALTY EYECARE OF SOUTH ARKANSAS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Sedgwick County Health Department", + "OrganizationName": "Princeton Ear, Nose \u0026 Throat, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS PPSI Ruston Clinic Company", + "OrganizationName": "NJ - FIX ME MD P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - CHS PPSI Ruston Clinic Company, LLC", + "OrganizationName": "WA - Willow Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "EAST BAY MEDICAL CENTER", + "OrganizationName": "VT - DR. NICOLE KEARNEY L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Mint Mobile Nursing Services, PLLC", + "OrganizationName": "FL - CAROL PAPPAS MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Global Psychiatric Services, PC", + "OrganizationName": "OH - VERTRAE, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Womens Pavilion of South Mississip", + "OrganizationName": "FL - Quality Healthcare Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cornerstone Centers for Wellbeing", + "OrganizationName": "FL - Down Home Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cornerstone Palliative Care", + "OrganizationName": "MT - Wells Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Dynamic Rehabilitative O \u0026 P Svcs", + "OrganizationName": "NC - Destiny Total Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - MasonDixon Mobile Medicine", + "OrganizationName": "CAMPBELL UNIVERSITY HEALTH CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NH - NOWAK ORTHOPEDIC ASSOCIATES, PLLC", + "OrganizationName": "CHILDREN'S NATIONAL CARDIOLOGY RICHMOND", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - DiabesityMD", + "OrganizationName": "Marshfield Medical Center-Dickinson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Center For Natural Medicine", + "OrganizationName": "FL - SIA-Specialty Infusion LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Magnolia Gynecology, LLC", + "OrganizationName": "Mindful Behavioral Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - A to Z Pediatrics, PLLC", + "OrganizationName": "KY - Joy Rich Healthcare Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - MAIN STREET PODIATRY, PC", + "OrganizationName": "AK - Pivotal Care Partnership", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - A\u0026M Wellness Internal Medicine Prac", + "OrganizationName": "MI - INTEGRATED HEALTH \u0026 WELLNESS CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Hispanic American Pediatrics \u0026 Fami", + "OrganizationName": "OR - Wadatika Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Kinetic Comfort, Pllc", + "OrganizationName": "MI - CANTON OB-GYN GROUP P.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Ryan Weight", + "OrganizationName": "LA - Thomas P Melancon, MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - New England Hospitalists PC", + "OrganizationName": "Athens Surgery Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Central Ohio Ophthalmology Inc", + "OrganizationName": "JASPER SURGERY CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - HECTOR R. TREVINO, M.D., P.A.", + "OrganizationName": "NEWNAN SURGERY CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Rohini Ramamoorthy MD", + "OrganizationName": "NORTHEAST GEORGIA SURGERY CENTER, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Michiana Adult Medical Specialists", + "OrganizationName": "SOUTHEASTERN INTERVENTIONAL PAIN ASC LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - FRANKFORT FAMILY CARE, LLC", + "OrganizationName": "SOUTHERN PAIN AND SPINE ASSOCIATES, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Chivic Healthcare", + "OrganizationName": "Southern Injury Specialists, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Creative Care Psychiatry", + "OrganizationName": "TX - Bulverde Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - DAISY FAMILY HEALTH LLC", + "OrganizationName": "CORE - NAO - ANSS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Bateman Horne Center", + "OrganizationName": "Center for Bone and Joint Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC001_CENTER FOR WOMENS HEALTH", + "OrganizationName": "Orthopedic \u0026 Spine Centers of Wisconsin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC002_CHESAPEAKE WOMENS CARE", + "OrganizationName": "Orthopedic Center of Florida", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC003_COMPLETE WOMENS CARE", + "OrganizationName": "Premier Ortho \u0026 Philadelphia Hand to Shoulder", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC004_GYNECOLOGY SPECIALISTS", + "OrganizationName": "Southeast Orthopedic Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC005_OBGYN SPECIALISTS FOR WOMEN", + "OrganizationName": "Swift Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC006_OBSTETRICS AND GYNECOLOGY ASSOCIATES OF HAMPTON", + "OrganizationName": "The CORE Institute MI", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC007_PENINSULA WOMEN'S CARE PC", + "OrganizationName": "MI - MICHIGAN PEDIATRIC ENDOCRINE AND DI", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC009_THE GROUP FOR WOMEN", + "OrganizationName": "IL - K \u0026 L Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC010_TIDEWATER PHYSICIANS FOR WOMEN", + "OrganizationName": "MD - Arise Behavioral Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC011_TOTALCARE FOR WOMEN", + "OrganizationName": "GA - Southern Family WalkIn", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC012_VIRGINIA BEACH OBSTETRICS \u0026 GYNECOLOGY", + "OrganizationName": "WY - Cody Clinic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC013_VIRGINIA CENTER FOR WOMEN, INC.", + "OrganizationName": "ID - Thrive Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC014_WOMANCARE CENTERS", + "OrganizationName": "FL - REVIVEMD305", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC015_WOMENS EXECUTIVE HEALTHCARE", + "OrganizationName": "MI - BLUE WATER CHILDREN'S HEALTH CARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC017_MIDATLANTIC WOMENS CARE IMAGING CENTERS", + "OrganizationName": "FL - Jose Castaneda MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC019_PHYSICIANS TO WOMEN, INC", + "OrganizationName": "IL - Chicago Nurse Midwife", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC020_HARRISONBURG OB GYN ASSOCIATES", + "OrganizationName": "OR - Bear Creek Clinic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC021_WEST END OBSTETRICS \u0026 GYNECOLOGY", + "OrganizationName": "TX - Jesse C. Delee MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC022_WILLIAMSBURG OBSTETRICS \u0026 GYNECOLOGY", + "OrganizationName": "FL - Personalized and Restorative Wellne", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Unified Mid-Atlantic Women's Care", + "OrganizationName": "WA - Jennifer Steel - start up", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Spring Tide Family Health", + "OrganizationName": "NC - Richard Michal,M.D., PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - The KindCare LLC", + "OrganizationName": "MT - Sound Diagnostics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Surgical Consultants of Northern VA", + "OrganizationName": "WA - Strong Mental Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HI - Griffin, Marcus", + "OrganizationName": "SC - Carolina Pines ENT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "THE FLOATING HOSPITAL", + "OrganizationName": "NC - Highland Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - NC Comprehensive Headache Clinic", + "OrganizationName": "AZ - CKZ Direct Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Anshu Gupta MD", + "OrganizationName": "FL - COMMUNITY CARE RESOURCES INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Valor Medical", + "OrganizationName": "NJ - THE WHOLE-ISTIC YOU, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Hernando Family Medical Clinic, LLC", + "OrganizationName": "GVMC Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - RVA Allergy LLC", + "OrganizationName": "Greenbrier Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Unitedhands Health \u0026 Wellness Clin", + "OrganizationName": "Greenbrier Colorectal Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Next Level Health PLLC", + "OrganizationName": "Greenbrier E.N.T.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Humberto Barrios", + "OrganizationName": "Greenbrier Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - VIVE Med Center", + "OrganizationName": "Greenbrier Hematology Oncology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Perfect Lifestyle", + "OrganizationName": "Greenbrier Internal Medicine and Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brenham Clinic", + "OrganizationName": "Greenbrier Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Cham Clinic", + "OrganizationName": "Greenbrier Neurosurgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - NUNEZ MEDICAL SERVICES PC", + "OrganizationName": "Greenbrier Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Riverside Family and Lifestyle Medi", + "OrganizationName": "Greenbrier Physical Medicine \u0026 Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - North Laurel Family Medicine", + "OrganizationName": "Greenbrier Primary Car", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - LOWER MANHATTAN MEDICAL CARE, P.C.", + "OrganizationName": "Greenbrier Sleep Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - A.R.K. of Mahogany LLC", + "OrganizationName": "Greenbrier Surgical Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Covenant Health Medical Group", + "OrganizationName": "Greenbrier Thyroid \u0026 Endocrine Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Monogram Kidney Care", + "OrganizationName": "Greenbrier Valley Express Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Beachside Pediatric Associates", + "OrganizationName": "Greenbrier Valley Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Kenkora", + "OrganizationName": "Greenbrier Valley Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Cloudberry Care Clinic LLC", + "OrganizationName": "Greenbrier Valley Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Next Level Medical Clinic", + "OrganizationName": "Greenbrier Valley Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Kingdom Primary Care", + "OrganizationName": "Greenbrier Valley Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Western Kentucky In Home Providers", + "OrganizationName": "Greenbrier Valley Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Wonderful Medical Group", + "OrganizationName": "Greenbrier Vein Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - CN Internal Medicine MD, PC", + "OrganizationName": "Ronceverte Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VT - WILD HEART MEDICINE, LLC", + "OrganizationName": "TX - Goodman, Samantha", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Peninsula Healthcare Center", + "OrganizationName": "CA - Allen Massihi Podiatric Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GOMED", + "OrganizationName": "FL - Xiao-Mei Zeng, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GOMED CHARLESTON", + "OrganizationName": "FL - Health And Glow Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Medihealth Primary Care", + "OrganizationName": "WV - Chapmanville Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GENESIS CENTER FOR WOMENS HEALTH INC", + "OrganizationName": "AJRC_Arthritis \u0026 Joint Replacement Cntr of Reading", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - SkyHeart Medical LLC", + "OrganizationName": "AOOR_Advanced Orthopaedics of Reading", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Dialysis Associates of Alaska", + "OrganizationName": "COA_Commonwealth Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - THE VILLAGE PEDIATRIC AND WELLNESS", + "OrganizationName": "KSP_Keystone Spine and Pain Management Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Dominion Health Services Inc", + "OrganizationName": "Keystone Ortho", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - PATHWAY TO WELLNESS HEALTHCARE CENT", + "OrganizationName": "Anderson Hills Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - BRANDYWINE RHEUMATOLOGY", + "OrganizationName": "AZ - New Image Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Carolina Medical Consultants", + "OrganizationName": "MI - RIVER OAKS PRIMARY CARE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - ASPEN FAMILY MEDICINE, P.L.L.C.", + "OrganizationName": "VA - Tidewater Lung and Sleep Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kay County Clinic", + "OrganizationName": "KS - Sedgwick County Health Department", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - PERFECT FORM CENTER FOR WELLNESS \u0026", + "OrganizationName": "EAST BAY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Lotus Recovery Center, LLC", + "OrganizationName": "TX - Mint Mobile Nursing Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Moon Valley Health", + "OrganizationName": "NY - Global Psychiatric Services, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - INTEGRATIVE WELLNESS CENTER LLC", + "OrganizationName": "MS - Womens Pavilion of South Mississip", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Joy Midwifery and Women's Health LL", + "OrganizationName": "Cornerstone Centers for Wellbeing", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - INTEGRATED MEDICAL HEALTHCARE SERVI", + "OrganizationName": "Cornerstone Palliative Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Aoun Medical Group, PLLC", + "OrganizationName": "LA - Dynamic Rehabilitative O \u0026 P Svcs", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Origin Healthcare", + "OrganizationName": "MD - MasonDixon Mobile Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Quillin Family Medicine", + "OrganizationName": "NH - NOWAK ORTHOPEDIC ASSOCIATES, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bonte Medical", + "OrganizationName": "NC - DiabesityMD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lexington Medical Associates", + "OrganizationName": "OR - Center For Natural Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Midtown East Chiro", + "OrganizationName": "FL - Magnolia Gynecology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Psychiatry Wellness Center", + "OrganizationName": "OK - A to Z Pediatrics, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texpress Urgent Care", + "OrganizationName": "MA - MAIN STREET PODIATRY, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Germane \u0026 Wise Mental Health System", + "OrganizationName": "FL - A\u0026M Wellness Internal Medicine Prac", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - NEUROSPINE PLUS LLC", + "OrganizationName": "MD - Hispanic American Pediatrics \u0026 Fami", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - CLARKE LEW MEDICAL CORP.", + "OrganizationName": "FL - Kinetic Comfort, Pllc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - NEXTGENDOC LLC", + "OrganizationName": "CO - Ryan Weight", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Steven H Suchman MD INC", + "OrganizationName": "MA - New England Hospitalists PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - MOBILE PHYSICAL THERAPY SERVICES IN", + "OrganizationName": "OH - Central Ohio Ophthalmology Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Eucalyptus Health", + "OrganizationName": "TX - HECTOR R. TREVINO, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Nurse Practitioner of Florida, LLC", + "OrganizationName": "AL - Rohini Ramamoorthy MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Mansoor Pediatrics", + "OrganizationName": "IN - Michiana Adult Medical Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - THE BELOVED MEDICAL PLLC", + "OrganizationName": "MI - FRANKFORT FAMILY CARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CONSULTANTS IN CARDIOVASCULAR MEDIC", + "OrganizationName": "MD - Chivic Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Creative Care Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - DAISY FAMILY HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Bateman Horne Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC001_CENTER FOR WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC002_CHESAPEAKE WOMENS CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC003_COMPLETE WOMENS CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC004_GYNECOLOGY SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC005_OBGYN SPECIALISTS FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC006_OBSTETRICS AND GYNECOLOGY ASSOCIATES OF HAMPTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC007_PENINSULA WOMEN'S CARE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC009_THE GROUP FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC010_TIDEWATER PHYSICIANS FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC011_TOTALCARE FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC012_VIRGINIA BEACH OBSTETRICS \u0026 GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC013_VIRGINIA CENTER FOR WOMEN, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC014_WOMANCARE CENTERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC015_WOMENS EXECUTIVE HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC017_MIDATLANTIC WOMENS CARE IMAGING CENTERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC019_PHYSICIANS TO WOMEN, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC020_HARRISONBURG OB GYN ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC021_WEST END OBSTETRICS \u0026 GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC022_WILLIAMSBURG OBSTETRICS \u0026 GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Unified Mid-Atlantic Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Spring Tide Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - The KindCare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Surgical Consultants of Northern VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Griffin, Marcus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE FLOATING HOSPITAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - NC Comprehensive Headache Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Anshu Gupta MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Valor Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Hernando Family Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - RVA Allergy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Unitedhands Health \u0026 Wellness Clin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Next Level Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Humberto Barrios", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VIVE Med Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Perfect Lifestyle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Cham Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NUNEZ MEDICAL SERVICES PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Riverside Family and Lifestyle Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - North Laurel Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - LOWER MANHATTAN MEDICAL CARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - A.R.K. of Mahogany LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Monogram Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Beachside Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kenkora", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Cloudberry Care Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Next Level Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Kingdom Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Western Kentucky In Home Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Wonderful Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - CN Internal Medicine MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - WILD HEART MEDICINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Peninsula Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GOMED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GOMED CHARLESTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Medihealth Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENESIS CENTER FOR WOMENS HEALTH INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - SkyHeart Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Dialysis Associates of Alaska", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - THE VILLAGE PEDIATRIC AND WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dominion Health Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - PATHWAY TO WELLNESS HEALTHCARE CENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - BRANDYWINE RHEUMATOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Medical Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - ASPEN FAMILY MEDICINE, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PERFECT FORM CENTER FOR WELLNESS \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Lotus Recovery Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Moon Valley Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - INTEGRATIVE WELLNESS CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Joy Midwifery and Women's Health LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - INTEGRATED MEDICAL HEALTHCARE SERVI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Aoun Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Origin Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Quillin Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bonte Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lexington Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midtown East Chiro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Psychiatry Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texpress Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Germane \u0026 Wise Mental Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NEUROSPINE PLUS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CLARKE LEW MEDICAL CORP.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NEXTGENDOC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Steven H Suchman MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - MOBILE PHYSICAL THERAPY SERVICES IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Eucalyptus Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nurse Practitioner of Florida, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Mansoor Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - THE BELOVED MEDICAL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CONSULTANTS IN CARDIOVASCULAR MEDIC", "NPIID": "", "OrganizationZipCode": "" }, @@ -57216,6 +58782,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women First OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Angela Wyatt Dermatology, PC", @@ -57416,13 +58988,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "La Porte Physician Network", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Porter Physician Group", + "OrganizationName": "Northwest Medical Group -Porter", "NPIID": "", "OrganizationZipCode": "" }, @@ -59774,7 +61340,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Finch, John", + "OrganizationName": "WA - Tran, Dinh", "NPIID": "", "OrganizationZipCode": "" }, @@ -61688,7 +63254,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Enterprise Clinic", + "OrganizationName": "Enterprise Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hartford Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -65496,12 +67068,6 @@ "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", @@ -65988,6 +67554,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pesh Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CO - Denver Neurological Clinic", @@ -66150,6 +67722,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TPPSC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Welcome Health", @@ -66638,7 +68216,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Nashville CARES My House Clinic", + "OrganizationName": "TN - Nashville CARES Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -66906,6 +68484,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Macular \u0026 Retinal Care,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Serenity Womens Care", @@ -67218,12 +68802,6 @@ "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", @@ -68604,6 +70182,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC006_MICHIGAN WOMEN'S HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - HCMD Management Group Corp.", @@ -69050,7 +70634,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Buckingham Sports Medicine and Wellness", + "OrganizationName": "Modern Sports Medicine and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -69230,25 +70814,73 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MOBERLY HOSPITALISTS", + "OrganizationName": "Chariton Valley Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MOBERLY SPECIALTY GROUP", + "OrganizationName": "Moberly Diagnostics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Medical Clinic", + "OrganizationName": "Moberly ENT and Plastics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly RHC", + "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", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Specialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Women’s Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -70898,7 +72530,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VT - THACH, SUSANNA", + "OrganizationName": "VT - Thach, Susanna", "NPIID": "", "OrganizationZipCode": "" }, @@ -71964,18 +73596,6 @@ "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", @@ -71994,12 +73614,6 @@ "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", @@ -73326,6 +74940,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Houston Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CO - Bmh Corp Inc Health Center", @@ -74034,6 +75654,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "InnovaCare Florida Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Innovacare Health Cheney", @@ -74046,6 +75672,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lama", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orlando Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Premier Family Health", @@ -74318,7 +75956,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Maternal and Family Health Services", + "OrganizationName": "Maternal and Family Health Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -75314,7 +76952,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HEART GROUP OF THE EASTER SHORE", + "OrganizationName": "HEART GROUP OF THE EASTERN SHORE", "NPIID": "", "OrganizationZipCode": "" }, @@ -75710,7 +77348,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Global Ortho and Spine Institute", + "OrganizationName": "FL - TROPICAL MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, @@ -75942,6 +77580,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Nashwell LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - Daniel Goldin MD \u0026 Dr Alana Levine", @@ -76284,6 +77928,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - BRUCHA HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - EXODUS MEDICAL LLC", @@ -76310,7 +77960,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Ovation Primary Care", + "OrganizationName": "Ovation Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -76506,6 +78156,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Vein \u0026 Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "LA - Gastroenterology Group", @@ -77024,7 +78680,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MAT-SU REGIONAL MEDICAL CENTER", + "OrganizationName": "Mat-Su Community Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mat-Su Heart", "NPIID": "", "OrganizationZipCode": "" }, @@ -77034,6 +78696,36 @@ "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", @@ -77502,6 +79194,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Evbodimar Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Shade Natural Medicine", @@ -77964,6 +79662,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MDs By The Sea", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MA - New England Cardiology", @@ -78024,6 +79728,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dream U", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - HONEST MEDICAL GROUP PLLC", @@ -78126,6 +79836,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Restore First Health Penn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Van Buren Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - SILVA FAMILY CENTER LLC", @@ -78288,6 +80010,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Anchor Behavioral Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WV - Comprehensive Health Solutions PLLC", @@ -78540,6 +80268,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - WiseMD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Mountain Laurel Medical Center", @@ -78618,6 +80352,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ALVAREZ \u0026 EDMISTON, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "VA - Spindle Health PLLC", @@ -79128,6 +80868,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - LIFEPOINT BEHAVIORAL HEALTH PHYSICI", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - The Nightingale Center Primary Care", @@ -79172,7 +80918,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Westmoreland Obstetrics and Gynecology Associates", + "OrganizationName": "Westmoreland Obstetrics and Gynecologic Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -79308,6 +81054,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pediatric Telehealth of Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Mindful Medicine", @@ -79422,6 +81174,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Outpatient Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "ID - Medical Solutions Health and Wellne", @@ -79464,6 +81222,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Peace of Mind Mental Health Counsel", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CT - Internal Medicine of Stamford PC", @@ -79836,6 +81600,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Clear TMS +, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "South Arkansas Physician Group", @@ -79938,6 +81708,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Trujillo Multi-Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Summit Medical and Obesity Associat", @@ -79956,6 +81732,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MyTownHealth Urgent Care-Lynn", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NC - East Asheville Family Health Care", @@ -79986,6 +81768,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Exponential Health PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Bayshore Podiatry", @@ -80250,6 +82038,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Resources for Mental Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NC - Ebb and Flow Therapy Services PLLC", @@ -80280,6 +82074,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ace Health and Wellness Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "The Neurology Group", @@ -80382,6 +82182,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Zen Medical Clinics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - ALI HEALTH", @@ -80430,6 +82236,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - MENTAL HEALTH ASSOCIATION OF FRANKL", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - STEVENS, MICHAEL E.", @@ -80538,6 +82350,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - APEX Spine and Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Aspen Internal Medicine Consultants", @@ -80582,7 +82400,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - OnSite Joint \u0026 Arthritis", + "OrganizationName": "NC - The PRP Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -80658,6 +82476,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Montana Laser and Medical Center, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Integro Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - WithCare Clinic", @@ -80736,6 +82566,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - OPEN CIRCLE HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Open Circle Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - Bronx Park Urgent Medical Care", @@ -80754,6 +82596,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Semcac", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - MT. PLEASANT PSYCHIATRY, LLC, DBA G", @@ -80780,7 +82628,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - THE LITTLES, INC.", + "OrganizationName": "The Littles Pediatric", "NPIID": "", "OrganizationZipCode": "" }, @@ -80790,6 +82638,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Urgent Care of Wallace, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Four Peaks Neurology, P.C", @@ -80808,6 +82662,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pars Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "PA - Sto-Rox Neighborhood Health Council", @@ -80816,7 +82676,31 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - The Training Station", + "OrganizationName": "The McInnis Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Training Station PT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Ramzy Medaa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lung Centre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Scripts360", "NPIID": "", "OrganizationZipCode": "" }, @@ -80970,6 +82854,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Critical Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Opticare", @@ -81312,6 +83202,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER INTEGRATED HEALTHCARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SH - STEMS HEALTH", @@ -81512,19813 +83408,19411 @@ }, { "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Eastern Shore Urgent Care LLC", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "3080 148th Avenue Southeast", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Value in Prevention of Washington", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - ELIXIR IV HYDRATION \u0026 WELLNESS LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pediatrics on Call", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Corvallis Pain Management", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Longevity Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CARDIOTHORACIC SURGERY SPECIALISTS", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fresh Start Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Summit Atlantic Surgery Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Summit Medical Group", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "My Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sun Country Pediatrics", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Garner Rheumatology \u0026 Infusion Center, PLLC", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Faith Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Peak Foot and Ankle", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - COLLABORATIVE HEALTH GROUP PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Aimergency Connect Psychcare", + "OrganizationName": "Valley Kidney Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Barbara J. MacFarlane, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - S. ISMAIL BOKHARI, M.D., P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "S. Ismail Bokhari , M.D.", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Integris Ponca and Woodward", - "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", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Tirmal, Viraj", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Vanschoyck, Patrick", + "OrganizationName": "GA - Med Diagnostics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Bloomfield Child \u0026 Family Counselin", + "OrganizationName": "TX - Kingdom House Calls", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - St. Mary Internal Medicine", + "OrganizationName": "Frontier Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - United Family Medical Center LLC", + "OrganizationName": "BEVID Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Nola Family Clinic", + "OrganizationName": "MD - Eastern Shore Urgent Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Cardiovascular Specialists of York", + "OrganizationName": "Balanced Family Natural Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Joseph J Botta and Associates", + "OrganizationName": "Fernando Bueso MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Lew, Edmund", + "OrganizationName": "Marion Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Prime Internists", + "OrganizationName": "Chapel Hill Doctors Healthcare Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RiverCare Health", + "OrganizationName": "IA - Mentem Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Dr Sean Owen", + "OrganizationName": "Station 2 Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Epic Pain Management", + "OrganizationName": "Capstone Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sapozhnikov Medical Corporation", + "OrganizationName": "LA - G. Vincent Bailey, MD APMC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CR WELLNESS LLC", + "OrganizationName": "Prestige Recovery and Suboxone Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHERN VIRGINIA NEPHROLOGY ASSOCIATES, PC", + "OrganizationName": "3080 148th Avenue Southeast", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - West Florida Vascular and Vein", + "OrganizationName": "Value in Prevention of Washington", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MOBILE ANESTHESIA ASSOCIATES, LLC", + "OrganizationName": "NY - Sharyn L Cass, Adult Nurse Practiti", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Todd, Robert", + "OrganizationName": "CA - Cassandra Ohlsen MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Gerardo Canchola MD", + "OrganizationName": "OK - ELIXIR IV HYDRATION \u0026 WELLNESS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Painlogics, LLC", + "OrganizationName": "Pediatrics on Call", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FemGevity", + "OrganizationName": "NM - Selenite Health And Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merced Faculty Associates", + "OrganizationName": "FL - Natoli, B / Natoli, L", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - PEDIATRIC NEUROLOGY OF NYC, P.C.", + "OrganizationName": "NY - Wissam Hoyek M.D., PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Paul E Diehl MD, A Medical Corporat", + "OrganizationName": "FL - Physicians of South Florida, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southeast Urogyn", + "OrganizationName": "OR - Corvallis Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Philip A. St. Raymond, MD, PLLC", + "OrganizationName": "SC - Longevity Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carlos Cohen, MD, PA", + "OrganizationName": "CARDIOTHORACIC SURGERY SPECIALISTS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Fit for Life Medical Center, INC.", + "OrganizationName": "Fresh Start Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - WELLINGTON ORTHOPEDIC INSTITUTE, LL", + "OrganizationName": "Summit Atlantic Surgery Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Affirmation Health", + "OrganizationName": "Summit Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Next Step Orthopedics, PLLC", + "OrganizationName": "CA - Exhort Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wayne Memorial Urology", + "OrganizationName": "CA - North Valley Surgical Associates, I", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TAMPA GENERAL MEDICAL GROUP, INC.", + "OrganizationName": "TX - CENTERED YOUTH CLINIC AND CONSULTI", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Iacobucci, James", + "OrganizationName": "NY - VERMENTON MOLINA PEDIATRICS P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Serenity Obgyn PLLC", + "OrganizationName": "SD - TRI STATE MEDICAL CENTER PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - VIP PEDIATRICS PLLC", + "OrganizationName": "NY - Babylon Village Medical Assoc. LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Christus LASBHC", + "OrganizationName": "Thrive Reconstructive Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Ainsley Medical Llc", + "OrganizationName": "VT - Hillemann and Kirwan, MD's, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Arrow Surgical Associates, PC", + "OrganizationName": "Bluestone Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Simple Healthcare Network", + "OrganizationName": "CA - Le Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - VASECTOMY CENTER OF CONNECTICUT LLC", + "OrganizationName": "Bridging Community", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Total Women's Health and Wellness C", + "OrganizationName": "FL - Sun Country Pediatrics PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Clay Health and Care", + "OrganizationName": "My Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - OHW Ventures LLC", + "OrganizationName": "Sun Country Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - PacWest Healthcare PLLC", + "OrganizationName": "Empower Recovery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crestwood Physician Service", + "OrganizationName": "FL - Alvaro I Martinez Jr MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Women's Internal Medicine, Inc.", + "OrganizationName": "TN - Micky L. Busby, M.D", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Hand Associates, PC", + "OrganizationName": "Garner Rheumatology \u0026 Infusion Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lightpath Health", + "OrganizationName": "Revive Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lightpath Health", + "OrganizationName": "CA - Cherry, Deborah", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Family Practice Clinic of Boonevill", + "OrganizationName": "AL - Faith Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Anna Petropoulos Weissleder, M.D.", + "OrganizationName": "Peak Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Jill A Bressler MD LLC", + "OrganizationName": "TX - COLLABORATIVE HEALTH GROUP PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Gynecology Associates, PLLC", + "OrganizationName": "AIMERGENCY CONNECT PSYCHCARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Florida Robotic and Min. Inv. Uro.", + "OrganizationName": "CA - Barbara J. MacFarlane, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Murphy, Dylan", + "OrganizationName": "AZ - S. ISMAIL BOKHARI, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Lisa", + "OrganizationName": "S. Ismail Bokhari , M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Oklahoma City Gynecology and Obstetrics/Lakeside", + "OrganizationName": "TN - Beating Pulse LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Urogynecology of Oklahoma", + "OrganizationName": "TX - AUSTIN AREA ORTHOPEDICS, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Advanced Gastroenterology \u0026 Surgery", + "OrganizationName": "IA - MIDWEST CONCIERGE MEDICINE PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Natalie L. Chambers MD PC", + "OrganizationName": "REBOOT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Howard K Horne MD", + "OrganizationName": "SUFFIELD PEDIATRIC AND ADOLESCENT MEDICINE, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Tierney, Letitia", + "OrganizationName": "OH - Forest Hills Pediatrics LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Mali \u0026 Mali Pediatrics, P.C.", + "OrganizationName": "Endocrine Care Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Pineville Pediatrics", + "OrganizationName": "Irram Rao MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Robert Sileo M.D., P.C.", + "OrganizationName": "Wasima Masoodi MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tristan Medical", + "OrganizationName": "WV - Dr. Lisa C. Hill, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Sellwood Medical Clinic,PC", + "OrganizationName": "AR - ACCESS MEDICAL CLINIC ARKANSAS LTC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Brock Orthopedic Surgery and Servic", + "OrganizationName": "FL - Prime Orthopedics and Regenerative", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Michael A. Mitchell, DO, PLLC", + "OrganizationName": "SCDBP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Holistic Family Practice", + "OrganizationName": "OH - Vidal Medical, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Foot \u0026 Ankle Sport Center LLC", + "OrganizationName": "The Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - RGV OB/GYN Associates, PA", + "OrganizationName": "Integris Ponca and Woodward", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Greater Boston Medical Associates", + "OrganizationName": "ELITE PRIMARY CARE AND WELLNESS, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Central California Neurology Med", + "OrganizationName": "Kane Hall Barry Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Raney Pediatrics", + "OrganizationName": "FL - ANCURAM LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Alla Korennaya, MD", + "OrganizationName": "LA - COMMUNITY FAMILY CARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Antheia OBGYN, LLC", + "OrganizationName": "VA - Norfolk Community Health Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Jay B. Krasner, MD", + "OrganizationName": "Hope and Roots", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Marwan Iskandarani MD PA", + "OrganizationName": "OH - Louis Flaspohler MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Pulmonary Specialties PC", + "OrganizationName": "KY - Restorative Oxygen Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Husna R. Baksh MD, PC", + "OrganizationName": "InformedDNA Medical Group PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bayfront Cardiovascular Associates", + "OrganizationName": "WI - CITY ON A HILL, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bayfront Orthopaedic Associates", + "OrganizationName": "TX - Zippo's Healthcare Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bayfront Trauma and Acute Care", + "OrganizationName": "NY - BRIAN MAYRSOHN, M.D., PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Bayfront Physician Speciality Serv", + "OrganizationName": "Matthew John Dvorchak, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Austin Primary Care", + "OrganizationName": "FL - DAISY HOLISTICARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tri-State Bariatrics", + "OrganizationName": "MD - Tirmal, Viraj", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Coastal S. Eastern Family Practice", + "OrganizationName": "OK - Vanschoyck, Patrick", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Edward A. Kepp MD", + "OrganizationName": "MI - Bloomfield Child \u0026 Family Counselin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Fairview Clinic", + "OrganizationName": "MO - PROGRESSIVE HEALTH SOLUTIONS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - John P. Gillespie, MD", + "OrganizationName": "IL - St. Mary Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Henry R. Paul, MD, PLLC", + "OrganizationName": "MA - United Family Medical Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Heart Clinic of Hammond LLC", + "OrganizationName": "LA - Nola Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - CPI Physicians, PC", + "OrganizationName": "MI - Associates In Primary Care PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Patricia Modad, MD, PA dba Palm Coa", + "OrganizationName": "PA - Cardiovascular Specialists of York", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Lendermon Sports Medicine", + "OrganizationName": "CT - Joseph J Botta and Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Planned Parenthood Greater New York", + "OrganizationName": "Joseph F. Radzwilka DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Louis G. Fares II, MD FACS LLC", + "OrganizationName": "CA - Lew, Edmund", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Upper Cumberland Urology Associates", + "OrganizationName": "MI - Prime Internists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Melissa Kempf MD, PLLC", + "OrganizationName": "RiverCare Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ROSEVILLE SURGICAL ALLIANCE, INC", + "OrganizationName": "NY - East End Rheumatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Metro Chicago Surgical Oncology", + "OrganizationName": "AL - Dr Sean Owen", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Andrew E. Nullman, M.D., P.A.", + "OrganizationName": "Epic Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Clove Lakes ENT, PC", + "OrganizationName": "CA - Sapozhnikov Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "THREE LOWER COUNTIES COMMUNITY SERVICES", + "OrganizationName": "Benjamin Stein PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Dublin OBGYN Associates, PC", + "OrganizationName": "AL - HydraLife L.L.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Aspen Foot \u0026 Ankle, LLC", + "OrganizationName": "AR - MobileMed3", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Miami Global OBGYN", + "OrganizationName": "KY - LPNT - Spring View Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Leggett Medical Group , Inc", + "OrganizationName": "TX - CR WELLNESS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Northlake Internal Medicine", + "OrganizationName": "NORTHERN VIRGINIA NEPHROLOGY ASSOCIATES, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Teresa Longoria MD, PLC", + "OrganizationName": "IN - Servant Express Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Ferrell \u0026 Allison, P.S.C.", + "OrganizationName": "TX - Nile Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Gulf South Foot \u0026 Ankle, LLC", + "OrganizationName": "FL - West Florida Vascular and Vein", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Fazeela H. Baqai MD, Inc", + "OrganizationName": "MOBILE ANESTHESIA ASSOCIATES, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MT - Family Wellness Center", + "OrganizationName": "OK - Todd, Robert", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - East West Health Center", + "OrganizationName": "A Clean Start LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Child Health of Madison County", + "OrganizationName": "CA - Gerardo Canchola MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - James Robert Parkey MD", + "OrganizationName": "GA - Painlogics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Ortho Surgery Group of San Antonio", + "OrganizationName": "FemGevity", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AMY D. LICHTENFELD, M.D.", + "OrganizationName": "Merced Faculty Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JEFFREY M. LORIA, M.D.", + "OrganizationName": "NY - PEDIATRIC NEUROLOGY OF NYC, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Advanced PainCare, PC", + "OrganizationName": "CA - Paul E Diehl MD, A Medical Corporat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - The Hughston Clinic, PC", + "OrganizationName": "Newma Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hughston Clinic", + "OrganizationName": "Southeast Urogyn", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hughston Medical Group", + "OrganizationName": "AZ - Philip A. St. Raymond, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - David Rice,MD,PA", + "OrganizationName": "Carlos Cohen, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Alabama Pulmonary and Sleep Special", + "OrganizationName": "VA - Fit for Life Medical Center, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Arthritis and Osteoporosis Center", + "OrganizationName": "TX - FELICIA OCHEI, MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Dr. Penstein-Hirt, MD", + "OrganizationName": "FL - WELLINGTON ORTHOPEDIC INSTITUTE, LL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Emerald Coast Rheumatology", + "OrganizationName": "Affirmation Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Orthopaedic Associates, USA", + "OrganizationName": "TX - Next Step Orthopedics, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Family Allergy \u0026 Asthma Care", + "OrganizationName": "Alpha Health Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - OC Physicians Network", + "OrganizationName": "Wayne Memorial Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - David A. Thanhauser, MD", + "OrganizationName": "NY - JMP HEALTH \u0026 WELLNESS, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Clinical Neurology, P.C.", + "OrganizationName": "Ole Brook Kids, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Southwest Eye Clinic, PLLC", + "OrganizationName": "TAMPA GENERAL MEDICAL GROUP, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Valley Health Clinic, Inc.", + "OrganizationName": "FL - Freedom Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Juniper Family Medicine, PLLC", + "OrganizationName": "NY - Iacobucci, James", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Prima Heart, a Medical Group", + "OrganizationName": "MI - Serenity Obgyn PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Teresa A. Marlino MD LLC", + "OrganizationName": "MS - VIP PEDIATRICS PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - William F Schubert, MD", + "OrganizationName": "AK - Lux Infusion", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Joshua International Medical Group", + "OrganizationName": "IL - Jean Shlyak MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Minor Emergency and Family Care Cen", + "OrganizationName": "LA - Christus LASBHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sam Sunshine MD", + "OrganizationName": "VA - Ainsley Medical Llc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Joseph E Ambrose DO", + "OrganizationName": "FL - Palm Beach Joint Replacement", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - JALH Physicians Clinic", + "OrganizationName": "AZ - Arrow Surgical Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Piedmont Orthopedics | OrthoAtlanta", + "OrganizationName": "DE - LIGHTHOUSE COMPLEX CARE OF DELAWARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Access Healthcare, LLC", + "OrganizationName": "SIMPLE HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Adeela R Ahsan MD, Inc", + "OrganizationName": "CT - VASECTOMY CENTER OF CONNECTICUT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - DUSON FAMILY HEALTHCARE", + "OrganizationName": "Warren Rehab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Aethena Gynecology Associates, PS", + "OrganizationName": "SODEL PULMONARY CENTER, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Arthritis Care Center Oklahoma, PLL", + "OrganizationName": "Brain, Spine \u0026 Vascular Neuroscience Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - K.A. Hamdy, M.D., P.C.", + "OrganizationName": "GA - Total Women's Health and Wellness C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Pacific Rheumatology Medical Center", + "OrganizationName": "CA - Davin R. Lundquist, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - MATTHEW D. GOLD, M.D", + "OrganizationName": "FL - Baskot, Biljana", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Feagins Medical Group, PLLC", + "OrganizationName": "GLOBAL PEDIATRICS \u0026 FAMILY MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Lakeside Heart and Vascular Center", + "OrganizationName": "Clay Health and Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Layne Kumetz M.D., Inc.", + "OrganizationName": "MI - DETROIT ORTHOPAEDIC INSTITUTE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - James P Taitsman MD, PA", + "OrganizationName": "MA - Concierge Medicine of South Shore", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Healthcare Clinic 1", + "OrganizationName": "MD - Keithley, Lisa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gorman Family Medical Clinic LLC", + "OrganizationName": "MO - Great Plains Endocrinology and Diab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RCH Family Healthcare Clinic", + "OrganizationName": "FL - OHW Ventures LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rochelle Family Healthcare inc", + "OrganizationName": "WA - PacWest Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Todd McNiff MD, PC", + "OrganizationName": "Crestwood Physician Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Laura E. Babe, M.D., P.L.C.", + "OrganizationName": "RI - Women's Internal Medicine, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Bert E. Geer, DO PC", + "OrganizationName": "VA - Hand Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Optimum Women's Care, PLLC", + "OrganizationName": "Lightpath Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - The Pain Management Institute LLC", + "OrganizationName": "TX - Lightpath Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - David B Cox, M.D.", + "OrganizationName": "KY - Family Practice Clinic of Boonevill", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Virginia Medical Acute Care, PC", + "OrganizationName": "MA - Anna Petropoulos Weissleder, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Richard P. Guerrant, MD", + "OrganizationName": "NY - Jill A Bressler MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Fort Smith Medical Center, LLC", + "OrganizationName": "VA - Gynecology Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Michael Minieka MD", + "OrganizationName": "FL - Florida Robotic and Min. Inv. Uro.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Jeffrey B Chick MD, PC", + "OrganizationName": "East Cooper Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Katz Orthopaedic Institute, LLC", + "OrganizationName": "Hilton Head Regional Physician Network", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - T Robert Rhodin MD", + "OrganizationName": "KY - Murphy, Dylan", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Helen Rostamloo MD Inc, A Professio", + "OrganizationName": "Dr. Lisa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Guy R. Fogel, MD", + "OrganizationName": "Oklahoma City Gynecology and Obstetrics/Lakeside", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Virginia Family Medicine, LLC", + "OrganizationName": "Urogynecology of Oklahoma", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FLOWERS HB MEDICAL SERVICES, LLC", + "OrganizationName": "FL - Advanced Gastroenterology \u0026 Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Flowers Medical Group", + "OrganizationName": "MA - Natalie L. Chambers MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Flowers Medical Group Primecare", + "OrganizationName": "PA - Howard K Horne MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Mid Atlantic Group", + "OrganizationName": "WV - Tierney, Letitia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Anesthesia Pain Management Services", + "OrganizationName": "MI - Mali \u0026 Mali Pediatrics, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - East Coast Medical PLLC", + "OrganizationName": "NC - Pineville Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - J Michael King, MD, PC", + "OrganizationName": "VA - Robert Sileo M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Atlanta West Women's Center", + "OrganizationName": "Tristan Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Marlene D. Galizi MD, PLLC", + "OrganizationName": "OR - Sellwood Medical Clinic,PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - LPNT Spring View Physician Practice", + "OrganizationName": "TX - Brock Orthopedic Surgery and Servic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Housecall Physicians of Illinois, S", + "OrganizationName": "TX - Michael A. Mitchell, DO, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Iris Castaneda-Van Wyk MD", + "OrganizationName": "Holistic Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Jena M. Roy FNP LLC dba Basile Fami", + "OrganizationName": "FL - Foot \u0026 Ankle Sport Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Jennie Stuart Health", + "OrganizationName": "TX - RGV OB/GYN Associates, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Dennis S. Gray, M.D., PSC", + "OrganizationName": "MA - Greater Boston Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Gill Medical \u0026 Geriatric Associates", + "OrganizationName": "CA - Central California Neurology Med", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lloyd Van Winkle, MD", + "OrganizationName": "NM - Raney Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Russellville Podiatry Center", + "OrganizationName": "RI - Alla Korennaya, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - PRIME MEDICAL GROUP", + "OrganizationName": "NJ - Antheia OBGYN, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Rajendra T. Gandhi MD, LLC", + "OrganizationName": "MA - Jay B. Krasner, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Robert Walker, MD", + "OrganizationName": "FL - Marwan Iskandarani MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Ben J Palombo, MD", + "OrganizationName": "CT - Pulmonary Specialties PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - WALLACE FAMILY PRACTICE, P.A.", + "OrganizationName": "MD - Husna R. Baksh MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Shi Yin Wong MD Medical Corporation", + "OrganizationName": "Bayfront Cardiovascular Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BANYAN INTEGRATIVE HEALTH LLC", + "OrganizationName": "Bayfront Orthopaedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Margaret L Grossman, MD", + "OrganizationName": "Bayfront Trauma and Acute Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Watauga Orthopaedics", + "OrganizationName": "FL - Bayfront Physician Speciality Serv", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Narindar K. Nat, M.D.", + "OrganizationName": "TX - Austin Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - John Cherf, MD, S.C.", + "OrganizationName": "Tri-State Bariatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Gardner MD, PC and Hamant, MD, PC", + "OrganizationName": "NC - Coastal S. Eastern Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Scott D. Isaacs, MD, PC", + "OrganizationName": "NC - Edward A. Kepp MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SD - Women's Wellness Center, Prof LLC", + "OrganizationName": "AL - Fairview Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Nicole B Baptiste MD, PC", + "OrganizationName": "KY - John P. Gillespie, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - S.S. Gill, MD, LLC", + "OrganizationName": "NY - Henry R. Paul, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Auburn Internal Medicine, P.C.", + "OrganizationName": "LA - Heart Clinic of Hammond LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Dr.Robyn Young \u0026 Dr.Barbara McQuinn", + "OrganizationName": "NY - CPI Physicians, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Clinical Renal Associates, LTD.", + "OrganizationName": "FL - Patricia Modad, MD, PA dba Palm Coa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Clinical Renal Associates", + "OrganizationName": "TN - Lendermon Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Kenneth L Crump MD, PC", + "OrganizationName": "Planned Parenthood Greater New York", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Ridgewood Medical Health, PLLC", + "OrganizationName": "NJ - Louis G. Fares II, MD FACS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Northlake Neurological Institute", + "OrganizationName": "TN - Upper Cumberland Urology Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Cardiovascular Specialists PSC", + "OrganizationName": "TX - Melissa Kempf MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Alcovy Neurology, PC", + "OrganizationName": "ROSEVILLE SURGICAL ALLIANCE, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Murhaf Naddour MD PC", + "OrganizationName": "Metro Chicago Surgical Oncology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - New Braunfels Bone \u0026 Joint, P.A.", + "OrganizationName": "FL - Andrew E. Nullman, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Grace Family Health Main Practice", + "OrganizationName": "NY - Clove Lakes ENT, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Murrieta Express Care", + "OrganizationName": "THREE LOWER COUNTIES COMMUNITY SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Michael J. Soffer, MD, INC", + "OrganizationName": "GA - Dublin OBGYN Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesterfield Clinic", + "OrganizationName": "UT - Aspen Foot \u0026 Ankle, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - CHS - Chesterfield Clinic Corp", + "OrganizationName": "FL - Miami Global OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - St. Joseph Urology, LLC", + "OrganizationName": "FL - Leggett Medical Group , Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Alisa L. Williams, M.D. Inc.", + "OrganizationName": "CA - Northlake Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Frederick J. McClimans, D.O., P.A", + "OrganizationName": "AZ - Teresa Longoria MD, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Guram - Tomball Clinic", + "OrganizationName": "KY - Ferrell \u0026 Allison, P.S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JVC Family Medicine", + "OrganizationName": "LA - Gulf South Foot \u0026 Ankle, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Texas Family Medicine Center", + "OrganizationName": "CA - Fazeela H. Baqai MD, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Family First Healthcare, PLLC", + "OrganizationName": "MT - Family Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Colorado Springs Foot and Ankle", + "OrganizationName": "CO - East West Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - South Central Colfax County Special", + "OrganizationName": "NY - Child Health of Madison County", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Gina R. Busch, M.D., Inc.", + "OrganizationName": "TX - James Robert Parkey MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Stacey E. Copeland, M.D., PLLC", + "OrganizationName": "TX - Ortho Surgery Group of San Antonio", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Portland West Family Practice, LLC", + "OrganizationName": "AMY D. LICHTENFELD, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - F. L. Ponce MD Inc.", + "OrganizationName": "JEFFREY M. LORIA, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Cardiology Specialists of VA, PC", + "OrganizationName": "PA - Advanced PainCare, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Cornerstone Family Practice, PC", + "OrganizationName": "GA - The Hughston Clinic, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Waco Primary Care, PA", + "OrganizationName": "Hughston Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Allergy \u0026 Asthma Specialty Group P.", + "OrganizationName": "Hughston Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cardiology Clinic of Muskogee", + "OrganizationName": "ME - David Rice,MD,PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Leachman Eye Institute, PS", + "OrganizationName": "AL - Alabama Pulmonary and Sleep Special", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Kids and Teens Orthopaedic Surgery", + "OrganizationName": "PA - Arthritis and Osteoporosis Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Ambulatory Foot Care Center, PC", + "OrganizationName": "NY - Dr. Penstein-Hirt, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Cardiovascular Solutions Institute", + "OrganizationName": "FL - Emerald Coast Rheumatology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - SV Pain Management", + "OrganizationName": "FL - Orthopaedic Associates, USA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Reading Cardiology Associates, P.C.", + "OrganizationName": "MD - Family Allergy \u0026 Asthma Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Anesthesia Pain Management Doctors", + "OrganizationName": "CA - OC Physicians Network", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SOUTH DENVER ENDOSCOPY CENTER", + "OrganizationName": "ME - David A. Thanhauser, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SOUTH DENVER GASTROENTEROLOGY", + "OrganizationName": "VA - Clinical Neurology, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Duluth Family Medicine, PC", + "OrganizationName": "OK - Southwest Eye Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Penn-Kidder Medical Center, Inc", + "OrganizationName": "VA - Valley Health Clinic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Patricia E. Laden MD", + "OrganizationName": "CO - Juniper Family Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - All-Star Pediatrics PLLC", + "OrganizationName": "CA - Prima Heart, a Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Nimisha Shukla, M.D.,P.A.", + "OrganizationName": "PA - Teresa A. Marlino MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Total Care Walk-In Clinic, Inc.", + "OrganizationName": "CA - William F Schubert, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Bente Kaiser M.D., Inc", + "OrganizationName": "CA - Joshua International Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Barbara Rugo Focht MD PC", + "OrganizationName": "VA - Minor Emergency and Family Care Cen", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Graham Emergency Services, Inc.", + "OrganizationName": "CA - Sam Sunshine MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BoulderCentre for Orthopedics", + "OrganizationName": "PA - Joseph E Ambrose DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - New Beginnings Women Healthcare", + "OrganizationName": "LA - JALH Physicians Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Elba Medical Clinic", + "OrganizationName": "Piedmont Orthopedics | OrthoAtlanta", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Paul Dulaney, M.D.", + "OrganizationName": "AR - Access Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Clinic", + "OrganizationName": "CA - Adeela R Ahsan MD, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Robert L. Liljeberg, M.D.", + "OrganizationName": "LA - DUSON FAMILY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Thomas W. Brown", + "OrganizationName": "WA - Aethena Gynecology Associates, PS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tom Peurifoy, M.D.", + "OrganizationName": "OK - Arthritis Care Center Oklahoma, PLL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Troy Regional Medical Center", + "OrganizationName": "VA - K.A. Hamdy, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Urgent Care", + "OrganizationName": "CA - Pacific Rheumatology Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ursula Wilson", + "OrganizationName": "MA - MATTHEW D. GOLD, M.D", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wilton McRae, M.D.", + "OrganizationName": "TN - Feagins Medical Group, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Kee In Yang MD DBA Mission Medical", + "OrganizationName": "AZ - Lakeside Heart and Vascular Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Maine Family Planning", + "OrganizationName": "CA - Layne Kumetz M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Wise Patient Internal Medicine, LLC", + "OrganizationName": "NJ - James P Taitsman MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Clinchfield Family Medicine", + "OrganizationName": "Family Healthcare Clinic 1", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Monterey Peninsula Pediatrics", + "OrganizationName": "Gorman Family Medical Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Phenix City Pain Management, LLC", + "OrganizationName": "RCH Family Healthcare Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Southern New England Healthcare", + "OrganizationName": "Rochelle Family Healthcare inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SNE Womens Health", + "OrganizationName": "NY - Todd McNiff MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - North Carolina Eye Ear Nose \u0026Throat", + "OrganizationName": "MI - Laura E. Babe, M.D., P.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Midland Health", + "OrganizationName": "TN - Bert E. Geer, DO PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Psychology Physicians", + "OrganizationName": "TX - Optimum Women's Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HEALTHSTAR PHYSICIANS, PC", + "OrganizationName": "FL - The Pain Management Institute LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sam P. Chia, MD", + "OrganizationName": "VA - David B Cox, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Florencio L Reyes MD, Inc.", + "OrganizationName": "VA - Virginia Medical Acute Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Elizabeth J. McConnell MD PLC", + "OrganizationName": "TN - Richard P. Guerrant, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Xavier Medical, PC", + "OrganizationName": "AR - Fort Smith Medical Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Gray Station Neurology, PC", + "OrganizationName": "IL - Michael Minieka MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Eastside Medical Associates, PC", + "OrganizationName": "NY - Jeffrey B Chick MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Seasons of Life OBGYN, PC", + "OrganizationName": "FL - Katz Orthopaedic Institute, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Vaughan Association of OB/GYN, PA", + "OrganizationName": "SC - T Robert Rhodin MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Cross Gates Pediatrics", + "OrganizationName": "CA - Helen Rostamloo MD Inc, A Professio", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - CommunityHealth", + "OrganizationName": "TX - Guy R. Fogel, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Healthlinknow, Inc.", + "OrganizationName": "VA - Virginia Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - DeLeo Family Medicine, P.C.", + "OrganizationName": "FMG PrimeCare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Apex \u0026 KD Medical Group Inc.", + "OrganizationName": "Wiregrass Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - ESPES EST, LLC", + "OrganizationName": "MD - Mid Atlantic Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Cape Cod Pediatrics LLP", + "OrganizationName": "TN - Anesthesia Pain Management Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Olde Towne Obstetrics \u0026 Gynecology,", + "OrganizationName": "NC - East Coast Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Coral Springs Holistic Pediatrics,", + "OrganizationName": "CO - J Michael King, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Excellence Medical Centers, LLC", + "OrganizationName": "GA - Atlanta West Women's Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Pediatric Care of Chelsea, P.C", + "OrganizationName": "NY - Marlene D. Galizi MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SD - Rapid City Regional Foot Clinic", + "OrganizationName": "KY - LPNT Spring View Physician Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RFU of MEDICINE AND SCIENCE LAB", + "OrganizationName": "IL - Housecall Physicians of Illinois, S", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rosalind Franklin University Health System", + "OrganizationName": "CA - Iris Castaneda-Van Wyk MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - MAIA CHAKERIAN, MD", + "OrganizationName": "LA - Jena M. Roy FNP LLC dba Basile Fami", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - LPNT Spring View Hospital, LLC", + "OrganizationName": "Jennie Stuart Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - East Bay Women's Health", + "OrganizationName": "KY - Dennis S. Gray, M.D., PSC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Jun R. Chiong, MD, MPH, Inc.", + "OrganizationName": "IN - Gill Medical \u0026 Geriatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Edgardo G. Alicaway, MD, PC", + "OrganizationName": "TX - Lloyd Van Winkle, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Dr. Spyros Tsoumpariotis, DPM", + "OrganizationName": "AL - Russellville Podiatry Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Gary S Toig MD", + "OrganizationName": "TN - PRIME MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Sung Won Lee, MD, P.C.", + "OrganizationName": "LA - Rajendra T. Gandhi MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Premier Neurology Medical Group, In", + "OrganizationName": "MS - Robert Walker, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Holtzin Family Medicine, LLC", + "OrganizationName": "LA - Ben J Palombo, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Innovative Pain Specialists, LLC", + "OrganizationName": "FL - WALLACE FAMILY PRACTICE, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Alliance In Health, PLLC", + "OrganizationName": "CA - Shi Yin Wong MD Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Stat Medical", + "OrganizationName": "BANYAN INTEGRATIVE HEALTH LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Francisco J. Gutierrez MD, PA", + "OrganizationName": "CA - Margaret L Grossman, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Trosch \u0026 Kirschner MDs", + "OrganizationName": "TN - Watauga Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Wendell J. Courtney, M.D., P.A.", + "OrganizationName": "CA - Narindar K. Nat, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Ear, Nose \u0026 Throat of Michiana, P.C", + "OrganizationName": "IL - John Cherf, MD, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Regis College of Nursing", + "OrganizationName": "AZ - Gardner MD, PC and Hamant, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - FOOT AND ANKLE PAIN SPECIALISTS LLC", + "OrganizationName": "GA - Scott D. Isaacs, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Express Care South", + "OrganizationName": "SD - Women's Wellness Center, Prof LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Express Care West Medical Clinic", + "OrganizationName": "NJ - Nicole B Baptiste MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Express Care of Fulton PLLC", + "OrganizationName": "AL - S.S. Gill, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - David Bradshaw, MD", + "OrganizationName": "AL - Auburn Internal Medicine, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - South Bay Retina, Inc", + "OrganizationName": "CA - Dr.Robyn Young \u0026 Dr.Barbara McQuinn", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Arizona Physical Medicine \u0026 Rehab", + "OrganizationName": "Clinical Renal Associates, LTD.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Coastal Orthopedics \u0026 Sports Medici", + "OrganizationName": "PA - Clinical Renal Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Doctor's Care", + "OrganizationName": "UT - Kenneth L Crump MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Community Health Center, Inc.", + "OrganizationName": "NY - Ridgewood Medical Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Charlotte Pain Management Center", + "OrganizationName": "LA - Northlake Neurological Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Vine Medical Associates", + "OrganizationName": "KY - Cardiovascular Specialists PSC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Caroline M Colin, MD PC", + "OrganizationName": "GA - Alcovy Neurology, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Pediatric Medical Clinic, Inc.", + "OrganizationName": "PA - Murhaf Naddour MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Edward Lee Holt DO, PA", + "OrganizationName": "TX - New Braunfels Bone \u0026 Joint, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - North Roswell Internal Medicine, P.", + "OrganizationName": "Grace Family Health Main Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Austin Vascular \u0026 Vein Specialists", + "OrganizationName": "Murrieta Express Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Neurologic Consultants P.A.", + "OrganizationName": "CA - Michael J. Soffer, MD, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Creekside Sleep Medicine Center", + "OrganizationName": "MO - St. Joseph Urology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Red Mtn Cardiothoracic Surgeons", + "OrganizationName": "CA - Alisa L. Williams, M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - A. Paul Kalanithi, M.D.. P.C.", + "OrganizationName": "FL - Frederick J. McClimans, D.O., P.A", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Gastroenterology Associates, PLLC", + "OrganizationName": "Dr. Guram - Tomball Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Crossville Gynecology Associates", + "OrganizationName": "JVC Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Gateway Podiatry, LLC", + "OrganizationName": "Texas Family Medicine Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Capital Primary Care", + "OrganizationName": "WV - Family First Healthcare, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Stephens Memorial Hospital", + "OrganizationName": "CO - Colorado Springs Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Tri State Orthopedics", + "OrganizationName": "NM - South Central Colfax County Special", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Performance Sports Medicine, INC", + "OrganizationName": "WV - Gina R. Busch, M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pediatric Associates of Jacksonville", + "OrganizationName": "WV - Stacey E. Copeland, M.D., PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Kari E Prescott, D.P.M., P.A.", + "OrganizationName": "ME - Portland West Family Practice, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Thompson Peak Family Care, SHC", + "OrganizationName": "WV - F. L. Ponce MD Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Tendercare Pediatrics", + "OrganizationName": "VA - Cardiology Specialists of VA, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alliance Digestive Disease Consultants", + "OrganizationName": "MA - Cornerstone Family Practice, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Andrew C. Ko, MD", + "OrganizationName": "TX - Waco Primary Care, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bay Area Digestive Health Medical Group", + "OrganizationName": "NC - Allergy \u0026 Asthma Specialty Group P.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Genesis Healthcare Partners", + "OrganizationName": "Cardiology Clinic of Muskogee", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Calin Arimie, MD \u0026 Ron Chitayat, MD", + "OrganizationName": "WA - Leachman Eye Institute, PS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Center for Digestive Disorders", + "OrganizationName": "FL - Kids and Teens Orthopaedic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cyrus Badii", + "OrganizationName": "VA - Ambulatory Foot Care Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "David B. Stanton, \u0026 Assoc.", + "OrganizationName": "FL - Cardiovascular Solutions Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Digestive Health Consultants", + "OrganizationName": "MA - SV Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Doctors Abousaif, Singh and Lee", + "OrganizationName": "MA - Reading Cardiology Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gastroenterology Associates", + "OrganizationName": "LA - Anesthesia Pain Management Doctors", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gastroenterology consultants of San Jose, PC", + "OrganizationName": "SOUTH DENVER ENDOSCOPY CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "INSITE DIGESTIVE - TARZANA", + "OrganizationName": "SOUTH DENVER GASTROENTEROLOGY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ken Buch, MD and Michael Shiffman, MD", + "OrganizationName": "GA - Duluth Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Nageraj Chetty, MD", + "OrganizationName": "PA - Penn-Kidder Medical Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SCGA Lab", + "OrganizationName": "TX - Patricia E. Laden MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SOUTHERN CALIFORNIA GASTROENTEROLOGY ASSOCIATES", + "OrganizationName": "AZ - All-Star Pediatrics PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "San Francisco Gastroenterology", + "OrganizationName": "NJ - Nimisha Shukla, M.D.,P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Unio Specialty Care - URO", + "OrganizationName": "CA - Total Care Walk-In Clinic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Gastroenterology Consultants", + "OrganizationName": "CA - Bente Kaiser M.D., Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Gastroenterology Medical Group", + "OrganizationName": "MA - Barbara Rugo Focht MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ventura County Gastroenterology Medical Group", + "OrganizationName": "TX - Graham Emergency Services, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "XX_DO NOT USE_XXX", + "OrganizationName": "BoulderCentre for Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite - Lancaster", + "OrganizationName": "OK - New Beginnings Women Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite - Los Gatos", + "OrganizationName": "Elba Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite - Pasadena Congress", + "OrganizationName": "Paul Dulaney, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite - San Gabriel", + "OrganizationName": "Primary Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite - Tarzana", + "OrganizationName": "Robert L. Liljeberg, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite - Thousand Oaks", + "OrganizationName": "Thomas W. Brown", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite - Verdugo", + "OrganizationName": "Tom Peurifoy, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite Anesthesia", + "OrganizationName": "Troy Regional Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite Santa Barbara", + "OrganizationName": "Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "inSite Ultrasound", + "OrganizationName": "Ursula Wilson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Atlanta Kidney \u0026 Hypertension Assoc", + "OrganizationName": "Wilton McRae, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Old Greenwich Medical Group", + "OrganizationName": "CA - Kee In Yang MD DBA Mission Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Growing Up Pediatrics", + "OrganizationName": "Maine Family Planning", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Symptom Medicine, Inc.", + "OrganizationName": "WA - Wise Patient Internal Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - First Choice Medical Center", + "OrganizationName": "TN - Clinchfield Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Health First", + "OrganizationName": "CA - Monterey Peninsula Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Minden Medical Center", + "OrganizationName": "AL - Phenix City Pain Management, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Louisiana Foot and Ankle Center", + "OrganizationName": "RI - Southern New England Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MINDEN PHYSICIAN PRACTICES", + "OrganizationName": "SNE Womens Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Minden Medicine and Nephrology", + "OrganizationName": "NC - North Carolina Eye Ear Nose \u0026Throat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Surgery and Endo Associates", + "OrganizationName": "Midland Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Women's Clinic", + "OrganizationName": "Psychology Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WorkFit Industrial Medicine", + "OrganizationName": "HEALTHSTAR PHYSICIANS, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Madison Irving Pediatrics, P.C.", + "OrganizationName": "CA - Sam P. Chia, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Washtenaw Medicine, PC", + "OrganizationName": "OH - Florencio L Reyes MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Bernstein Allergy Group, Inc.", + "OrganizationName": "AZ - Elizabeth J. McConnell MD PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Family Practice MSO", + "OrganizationName": "NY - Xavier Medical, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Northern Valley Allergy, Asthma", + "OrganizationName": "TN - Gray Station Neurology, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - JThink, LLC", + "OrganizationName": "NY - Eastside Medical Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - David R. Tomazic, D.O., LLC", + "OrganizationName": "PA - Seasons of Life OBGYN, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Nassau Suffolk Internal Med", + "OrganizationName": "TX - Vaughan Association of OB/GYN, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - The Tanenbaum Dermatology Center PL", + "OrganizationName": "LA - Cross Gates Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Andrew W Garner MD", + "OrganizationName": "IL - CommunityHealth", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Gastroenterology Consultants of LI", + "OrganizationName": "CA - Healthlinknow, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Wade R. Cartwright, M.D.", + "OrganizationName": "NY - DeLeo Family Medicine, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Rockbridge Health, PLLC", + "OrganizationName": "CA - Apex \u0026 KD Medical Group Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - THEODORE GERARD A CASPE, M.D.", + "OrganizationName": "NM - ESPES EST, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - JORGE A PATINO MD PA", + "OrganizationName": "MA - Cape Cod Pediatrics LLP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Dr. Joan Sy Medical Corp", + "OrganizationName": "VA - Olde Towne Obstetrics \u0026 Gynecology,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Gerardo D Rodriguez, MD", + "OrganizationName": "FL - Coral Springs Holistic Pediatrics,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Family Walk-In Medical Center, PC", + "OrganizationName": "FL - Excellence Medical Centers, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - ILLINOIS SPINE AND PAIN CENTER, S.C", + "OrganizationName": "MI - Pediatric Care of Chelsea, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Celeste S Soberano MD PA", + "OrganizationName": "SD - Rapid City Regional Foot Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Stephen J Farmer MD", + "OrganizationName": "RFU of MEDICINE AND SCIENCE LAB", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Iron Horse Pediatrics, LLC", + "OrganizationName": "Rosalind Franklin University Health System", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Brownridge Pediatrics P.C.", + "OrganizationName": "CA - MAIA CHAKERIAN, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Southeast Pulmonary \u0026 Critical Care", + "OrganizationName": "KY - LPNT Spring View Hospital, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Village Pediatric Cardiology, PLLC", + "OrganizationName": "CA - East Bay Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Sunnyside Family Medicine, PC", + "OrganizationName": "CA - Jun R. Chiong, MD, MPH, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Center For Integrated Medicine P.A", + "OrganizationName": "CA - Edgardo G. Alicaway, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Physical Rehabilitation Group", + "OrganizationName": "NY - Dr. Spyros Tsoumpariotis, DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CPAP of San Antonio", + "OrganizationName": "CA - Gary S Toig MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cardiology of San Antonio", + "OrganizationName": "NJ - Sung Won Lee, MD, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Rahnana Sachs, M.D.", + "OrganizationName": "CA - Premier Neurology Medical Group, In", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Brain + Elective Spine Treatment", + "OrganizationName": "NJ - Holtzin Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - North Moore Family Practice, PA", + "OrganizationName": "IL - Innovative Pain Specialists, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Three Oaks Family Medicine, LLC", + "OrganizationName": "TX - Alliance In Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - The Doctor's In PC", + "OrganizationName": "FL - Stat Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Andrew Polakovsky, MD, PC", + "OrganizationName": "TX - Francisco J. Gutierrez MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northern Berkshire Orthopedics", + "OrganizationName": "MI - Trosch \u0026 Kirschner MDs", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SVMC Medical Practices and Affiliates", + "OrganizationName": "FL - Wendell J. Courtney, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southwestern Vermont Medical Center", + "OrganizationName": "IN - Ear, Nose \u0026 Throat of Michiana, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Twin Rivers Medical, PC", + "OrganizationName": "MA - Regis College of Nursing", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Margaret M. Coughlan, MD PLLC", + "OrganizationName": "IL - FOOT AND ANKLE PAIN SPECIALISTS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hamlin Medical Clinic", + "OrganizationName": "Express Care South", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Sesslar Family Medical Center", + "OrganizationName": "Express Care West Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - The Ostergard Gynecology and Female", + "OrganizationName": "Express Care of Fulton PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Premier Ob/Gyn, LLC", + "OrganizationName": "UT - David Bradshaw, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Louisiana ENT Associates, LLC", + "OrganizationName": "CA - South Bay Retina, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Associates in Medicine", + "OrganizationName": "AZ - Arizona Physical Medicine \u0026 Rehab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Celebration Family Care", + "OrganizationName": "ME - Coastal Orthopedics \u0026 Sports Medici", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Joseph Howard Rupard", + "OrganizationName": "NY - Doctor's Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - E. Wayne Haga M.D., Family Practice", + "OrganizationName": "GA - Community Health Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopaedic Surgery \u0026 Sports Medicine of Dallas", + "OrganizationName": "FL - Charlotte Pain Management Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Appling Family Total Healthcare", + "OrganizationName": "GA - Vine Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JEFFERY M BUTLER MD PC", + "OrganizationName": "CA - Caroline M Colin, MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "William H Cantey MD", + "OrganizationName": "LA - Pediatric Medical Clinic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Repassy Medical, LLC", + "OrganizationName": "TX - Edward Lee Holt DO, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Commonwealth Medical Practice", + "OrganizationName": "GA - North Roswell Internal Medicine, P.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Today's Wellness and Primary Care", + "OrganizationName": "TX - Austin Vascular \u0026 Vein Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TODAY'S WELLNESS AND PRIMARY CARE", + "OrganizationName": "FL - Neurologic Consultants P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TWPC", + "OrganizationName": "WA - Creekside Sleep Medicine Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - The Children's Heart Center", + "OrganizationName": "AZ - Red Mtn Cardiothoracic Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Family Orthopedic Clinic, PLLC", + "OrganizationName": "AZ - A. Paul Kalanithi, M.D.. P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Primus Medical Group P.C.", + "OrganizationName": "OK - Gastroenterology Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Midwest Family Wellness Corporation", + "OrganizationName": "TN - Crossville Gynecology Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - VA Advanced Med Center, PC", + "OrganizationName": "MO - Gateway Podiatry, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Hope Children and family Care, LLC", + "OrganizationName": "TX - Capital Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Thomas J. Rojy, Jr., MD, PA", + "OrganizationName": "TX - Stephens Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Essex Ortho \u0026 Optima Sports Med", + "OrganizationName": "PA - Tri State Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Intermountain Epilepsy \u0026 Sleep Ctr", + "OrganizationName": "TX - Performance Sports Medicine, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Access Internal Medicine PC", + "OrganizationName": "Pediatric Associates of Jacksonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bonneville Family Practice", + "OrganizationName": "MN - Kari E Prescott, D.P.M., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bonneville Mental Health", + "OrganizationName": "AZ - Thompson Peak Family Care, SHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Med Spa", + "OrganizationName": "OH - Tendercare Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Giebeig Family Medicine, PA", + "OrganizationName": "Alliance Digestive Disease Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - CLINICAL GENETICS ASSOCIATES MD", + "OrganizationName": "Andrew C. Ko, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Trent Twitero MD, P.A.", + "OrganizationName": "Bay Area Digestive Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - G. Steven White MD PA", + "OrganizationName": "CA - Genesis Healthcare Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Pinehurst Orthopedic Group, P.A.", + "OrganizationName": "Calin Arimie, MD \u0026 Ron Chitayat, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - William R Salazar MD", + "OrganizationName": "Center for Digestive Disorders", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHP", + "OrganizationName": "Cyrus Badii", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - OLIVA AND OLIVA, M.D.'S, P.A.", + "OrganizationName": "David B. Stanton, \u0026 Assoc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Antonio M Diaz Jr MD PA Inc", + "OrganizationName": "Digestive Health Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Center for Cardiovascular Excellenc", + "OrganizationName": "Doctors Abousaif, Singh and Lee", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Gastrointestinal Care Consultants P", + "OrganizationName": "Gastroenterology Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALEXIAN BROTHERS MEDICAL CENTER", + "OrganizationName": "Gastroenterology consultants of San Jose, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AMITA HEALTH ABBHH", + "OrganizationName": "INSITE DIGESTIVE - TARZANA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AdventHealth Medical Group", + "OrganizationName": "Ken Buch, MD and Michael Shiffman, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BONAVENTURE MEDICAL FOUNDATION", + "OrganizationName": "Nageraj Chetty, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BR. PHILIP KENNEDY FAMILY HEALTH CENTER", + "OrganizationName": "SCGA Lab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MEDICAL GROUP", + "OrganizationName": "SOUTHERN CALIFORNIA GASTROENTEROLOGY ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Elizabeth Pierce", + "OrganizationName": "San Francisco Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MDVIP Dr. Patricia Philips", + "OrganizationName": "Unio Specialty Care - Anes", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Annapolis Internal Medicine", + "OrganizationName": "Unio Specialty Care - CCM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Hobdari Family Health, LLC", + "OrganizationName": "Unio Specialty Care - GI", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lee Colosimo, M.D.", + "OrganizationName": "Unio Specialty Care - Lab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Lapeer Physician Group, PLC", + "OrganizationName": "Unio Specialty Care - RO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Centers for Advanced Orthopaedics at MMI", + "OrganizationName": "Unio Specialty Care - URO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Doctors Sutton and Mercer, L.L.P.", + "OrganizationName": "Valley Gastroenterology Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WHC Professional Services, LLC", + "OrganizationName": "Valley Gastroenterology Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Fareeda N Adeeb MD Pediatrics", + "OrganizationName": "Ventura County Gastroenterology Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Family Medical Associates", + "OrganizationName": "XX_DO NOT USE_XXX", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Beams \u0026 Gilsenan", + "OrganizationName": "inSite - Lancaster", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "David M. Herzog, M.D., P.C", + "OrganizationName": "inSite - Los Gatos", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Trinitas Medical Group", + "OrganizationName": "inSite - Pasadena Congress", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Midwest Primary Care, SC", + "OrganizationName": "inSite - San Gabriel", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Abilio Munoz, MD, PA", + "OrganizationName": "inSite - Tarzana", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Intervention Arms Medical Center", + "OrganizationName": "inSite - Thousand Oaks", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Northwest Women's Clinic, P.C.", + "OrganizationName": "inSite - Verdugo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Charles F Wilson DPM, PC", + "OrganizationName": "inSite Anesthesia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Nicole Sharkey, MD", + "OrganizationName": "inSite Santa Barbara", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - GMT, Inc", + "OrganizationName": "inSite Ultrasound", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - West Central Podiatry Consultants,", + "OrganizationName": "GA - Atlanta Kidney \u0026 Hypertension Assoc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - QHC PF Evanston Hospital Corporatio", + "OrganizationName": "CT - Old Greenwich Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Jeffrey A. Arons MD PC", + "OrganizationName": "NC - Growing Up Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Charles K Lee, MD Inc", + "OrganizationName": "CA - Symptom Medicine, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Shores Medical Center", + "OrganizationName": "VA - First Choice Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Primary Care Associates, LLC", + "OrganizationName": "Health First", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Jim P Hussey DO PA", + "OrganizationName": "LA - Minden Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - George G Ellis Jr MD Inc", + "OrganizationName": "Louisiana Foot and Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Tajammul Ehsan MD PC", + "OrganizationName": "MINDEN PHYSICIAN PRACTICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Shabih Hasan MD PC", + "OrganizationName": "Minden Medicine and Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Seaport Community Health Center", + "OrganizationName": "Surgery and Endo Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Adolescent \u0026 Pediatric Medical Ctr.", + "OrganizationName": "The Women's Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - DOYLESTOWN MEDICAL CENTER, INC", + "OrganizationName": "WorkFit Industrial Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Northshore Family Practice, PLLC", + "OrganizationName": "NY - Madison Irving Pediatrics, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "John S. Caskey, MD.", + "OrganizationName": "MI - Washtenaw Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Family Healthcare of Hendersonville", + "OrganizationName": "OH - Bernstein Allergy Group, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - At Home Medical Care, LLC", + "OrganizationName": "MI - Family Practice MSO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - George W. Ma, MD", + "OrganizationName": "NJ - Northern Valley Allergy, Asthma", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Lake Norman Arthritis Specialists", + "OrganizationName": "NM - JThink, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - The Polyclinic MSO, LLC.", + "OrganizationName": "PA - David R. Tomazic, D.O., LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Family First Medical Care, PC", + "OrganizationName": "NY - Nassau Suffolk Internal Med", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Arizona Sun Family Medicine, PC", + "OrganizationName": "TN - The Tanenbaum Dermatology Center PL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - B Lynne Gray MD", + "OrganizationName": "NY - Andrew W Garner MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Family Medicine of Abilene, PA", + "OrganizationName": "NY - Gastroenterology Consultants of LI", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Orthopaedic \u0026 Sports Specialist, In", + "OrganizationName": "CA - Wade R. Cartwright, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Pediatrics on Demand, Inc.", + "OrganizationName": "VA - Rockbridge Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Upton Family Medicine, PLLC", + "OrganizationName": "CA - THEODORE GERARD A CASPE, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Rheumatology Associates", + "OrganizationName": "TX - JORGE A PATINO MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Carol C. Jagdeo, MD", + "OrganizationName": "CA - Dr. Joan Sy Medical Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Shifa Pediatric Clinic PLLC", + "OrganizationName": "NV - Gerardo D Rodriguez, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Calvary Medical Clinic PA", + "OrganizationName": "OR - Family Walk-In Medical Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Nobhill Medical Center Inc", + "OrganizationName": "IL - ILLINOIS SPINE AND PAIN CENTER, S.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Kevin E Wright MD PC", + "OrganizationName": "FL - Celeste S Soberano MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MedExpress Primary Care", + "OrganizationName": "TX - Stephen J Farmer MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MedExpress Urgent Care", + "OrganizationName": "CO - Iron Horse Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Victoria Family Practice PLC", + "OrganizationName": "MO - Brownridge Pediatrics P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Breast Care Center", + "OrganizationName": "SC - Southeast Pulmonary \u0026 Critical Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Primrose Primary Care and Wellness", + "OrganizationName": "NY - Village Pediatric Cardiology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - ARIE SALZMAN, MD, PA", + "OrganizationName": "WA - Sunnyside Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Central New York Child Neurology", + "OrganizationName": "TX - Center For Integrated Medicine P.A", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - ABC Family Medicine, PA", + "OrganizationName": "SC - Physical Rehabilitation Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Shervin Alborzian, MD, PC", + "OrganizationName": "CPAP of San Antonio", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AAA Allergy \u0026 Asthma", + "OrganizationName": "Cardiology of San Antonio", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AROC Radiology", + "OrganizationName": "CA - Rahnana Sachs, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CAR Addiction \u0026 Recovery", + "OrganizationName": "CA - Brain + Elective Spine Treatment", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CCS Student Health Center", + "OrganizationName": "NC - North Moore Family Practice, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CLK Physical Therapy", + "OrganizationName": "CO - Three Oaks Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CMG Counseling Center", + "OrganizationName": "VA - The Doctor's In PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CMG Pain \u0026 Rehab", + "OrganizationName": "PA - Andrew Polakovsky, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CMG Primary Care", + "OrganizationName": "Northern Berkshire Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CUC Urgent Care", + "OrganizationName": "SVMC Medical Practices and Affiliates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ODI Dermatology", + "OrganizationName": "Southwestern Vermont Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OOSM Ortho \u0026 Podiatry", + "OrganizationName": "Twin Rivers Medical, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OPC Pain Medicine", + "OrganizationName": "NY - Margaret M. Coughlan, MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MetroSouth", + "OrganizationName": "Hamlin Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - James Leonard Pinto, MD, PC", + "OrganizationName": "OH - Sesslar Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Crossroads OBGYN and Wellness, PA", + "OrganizationName": "CA - The Ostergard Gynecology and Female", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Rendezvous Medical", + "OrganizationName": "NJ - Premier Ob/Gyn, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Womens Health Partner, LLC", + "OrganizationName": "LA - Louisiana ENT Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Scott Newcomb DPM, PC", + "OrganizationName": "CT - Associates in Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - The Digestive Group, P.C.", + "OrganizationName": "Celebration Family Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - The Minnesota Birth Center, INC.", + "OrganizationName": "Joseph Howard Rupard", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Kidney \u0026 Hypertension Assoc. of Dal", + "OrganizationName": "VA - E. Wayne Haga M.D., Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Graciela Moreno MD PA", + "OrganizationName": "Orthopaedic Surgery \u0026 Sports Medicine of Dallas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IA - Jeff Klein, DPM PC", + "OrganizationName": "Appling Family Total Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS Marion", + "OrganizationName": "JEFFERY M BUTLER MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHERN ARIZONA HEALTHCARE PROVIDER GROUP", + "OrganizationName": "William H Cantey MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Stephen Murphy, M.D", + "OrganizationName": "MA - Repassy Medical, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Associates Internal Medicine Physic", + "OrganizationName": "Commonwealth Medical Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS York Clinic", + "OrganizationName": "MA - Today's Wellness and Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Crossville Ortho \u0026 Sports Medicine", + "OrganizationName": "TODAY'S WELLNESS AND PRIMARY CARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Fugle Orthopedics PC", + "OrganizationName": "TWPC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Lake Washington Sports and Spine", + "OrganizationName": "MA - The Children's Heart Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BoroPark", + "OrganizationName": "TN - Family Orthopedic Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Trinity Women's Center", + "OrganizationName": "TN - Primus Medical Group P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Trinity Women's Center- Dr. Smith-Blair", + "OrganizationName": "IL - Midwest Family Wellness Corporation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - Lily Internal Medicine \u0026 Assoc.", + "OrganizationName": "VA - VA Advanced Med Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Litchfield Medical Center", + "OrganizationName": "LA - Hope Children and family Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Keith Schauder MD, PA", + "OrganizationName": "NC - Thomas J. Rojy, Jr., MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Homestead Pediatric Associates, Inc", + "OrganizationName": "Essex Ortho \u0026 Optima Sports Med", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Housecalls Done Wright", + "OrganizationName": "UT - Intermountain Epilepsy \u0026 Sleep Ctr", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Academy Orthopedics LLC", + "OrganizationName": "NC - Access Internal Medicine PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - S.W. Leehan, MD, PC", + "OrganizationName": "Bonneville Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Shore Physicians Group", + "OrganizationName": "Bonneville Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Eaton Medical Associates, PLLC", + "OrganizationName": "Med Spa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Robert Gnade MD", + "OrganizationName": "FL - Giebeig Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Family Health Care", + "OrganizationName": "FL - CLINICAL GENETICS ASSOCIATES MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Caritas Center for Women's Health", + "OrganizationName": "TX - Trent Twitero MD, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Associates in Women's Health Care,", + "OrganizationName": "TX - G. Steven White MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Comprehensive Allergy and Asthma Ca", + "OrganizationName": "NC - Pinehurst Orthopedic Group, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - TAC Holdings, LLC", + "OrganizationName": "FL - William R Salazar MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Wells Family Practice, LLC", + "OrganizationName": "CHP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Advanced Heart Care", + "OrganizationName": "FL - OLIVA AND OLIVA, M.D.'S, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Associates in Obstetrics and Gyneco", + "OrganizationName": "TX - Antonio M Diaz Jr MD PA Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Urgent Care \u0026 Occupational Medicine", + "OrganizationName": "IL - Center for Cardiovascular Excellenc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Injury Care of Colorado", + "OrganizationName": "TX - Gastrointestinal Care Consultants P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Injury Care of Colorado Physical Therapy", + "OrganizationName": "ALEXIAN BROTHERS MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Platte River Medical Clinic", + "OrganizationName": "AMITA HEALTH ABBHH", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Stern Family Practice, LLC", + "OrganizationName": "AdventHealth Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Integra Rehab Physicians", + "OrganizationName": "BONAVENTURE MEDICAL FOUNDATION", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Senior Care Physicians of Illinois", + "OrganizationName": "BR. PHILIP KENNEDY FAMILY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Foot Surgeons, PLLC", + "OrganizationName": "MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Synergy Women's Health Care", + "OrganizationName": "Dr. Elizabeth Pierce", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Advanced Endocrinology, LLC", + "OrganizationName": "MDVIP Dr. Patricia Philips", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Hill Country Family Medicine, PLLC", + "OrganizationName": "MD - Annapolis Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Katayoon Shahinfar MD", + "OrganizationName": "FL - Hobdari Family Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - We Care Family Practice, Inc.", + "OrganizationName": "TX - Lee Colosimo, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Batts Family Practitioners, LLC", + "OrganizationName": "MI - Lapeer Physician Group, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Interventional Spine and Pain, PC", + "OrganizationName": "Centers for Advanced Orthopaedics at MMI", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Joseph W. Price M.D. \u0026 Associates", + "OrganizationName": "TX - Doctors Sutton and Mercer, L.L.P.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Wake ENT Specialists, PLLC", + "OrganizationName": "WHC Professional Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Suncoast Medical Group, Inc.", + "OrganizationName": "CA - Fareeda N Adeeb MD Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Taunton Urologic Associates, PC", + "OrganizationName": "Advanced Family Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Front Range Orthopaedics, P.C.", + "OrganizationName": "Beams \u0026 Gilsenan", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Max Health Maine LLC", + "OrganizationName": "David M. Herzog, M.D., P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - James Longton, DPM, PC", + "OrganizationName": "Trinitas Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Hand Specialist, Inc.", + "OrganizationName": "IL - Midwest Primary Care, SC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Trinity Pediatrics, LLC", + "OrganizationName": "TX - Abilio Munoz, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - James R Clark, MD, PC", + "OrganizationName": "IL - Intervention Arms Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Karen L Smith MD PA", + "OrganizationName": "OR - Northwest Women's Clinic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wright State Physicians", + "OrganizationName": "MD - Charles F Wilson DPM, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - CHS-CHS Easton Hospital", + "OrganizationName": "CA - Nicole Sharkey, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Cox Management", + "OrganizationName": "CA - GMT, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Texas Colon and Rectal Specialists", + "OrganizationName": "FL - West Central Podiatry Consultants,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Family Care Center Corp", + "OrganizationName": "WY - QHC PF Evanston Hospital Corporatio", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Bourne Family Medicine PC", + "OrganizationName": "CT - Jeffrey A. Arons MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - University Suburban Gyn, Inc", + "OrganizationName": "CA - Charles K Lee, MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Ace Urgent Care \u0026 Clinic- Collector", + "OrganizationName": "FL - Shores Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Ohio Sleep and Pulmonary Center Inc", + "OrganizationName": "KS - Primary Care Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Burnham Medical Center, Ltd.", + "OrganizationName": "TX - Jim P Hussey DO PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Amrut R Patel MD", + "OrganizationName": "OH - George G Ellis Jr MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Michael Taymor, MD", + "OrganizationName": "VA - Tajammul Ehsan MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Advanced Family Health Care, Inc", + "OrganizationName": "VA - Shabih Hasan MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Vein Center", + "OrganizationName": "ME - Seaport Community Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Wound Care Center", + "OrganizationName": "FL - Adolescent \u0026 Pediatric Medical Ctr.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Compassionate Family Care, LLC", + "OrganizationName": "OH - DOYLESTOWN MEDICAL CENTER, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MICHELLE R. REYNA, MD, PA", + "OrganizationName": "WA - Northshore Family Practice, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Methodist OB/GYN", + "OrganizationName": "John S. Caskey, MD.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Miriam Shustik MD PC", + "OrganizationName": "TN - Family Healthcare of Hendersonville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Madsen Orthopedics", + "OrganizationName": "AZ - At Home Medical Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - CENTER FOR WOMEN'S HEALTH", + "OrganizationName": "CA - George W. Ma, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - James W Adams II, M.D.", + "OrganizationName": "NC - Lake Norman Arthritis Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Grand Vein Specialists, LLC", + "OrganizationName": "WA - The Polyclinic MSO, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Apple-A-Day Pediatrics", + "OrganizationName": "GA - Family First Medical Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Siskin Ctr Developmental Pediatrics", + "OrganizationName": "AZ - Arizona Sun Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Children and Adolescent Pediatric", + "OrganizationName": "TX - B Lynne Gray MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Matcare, LLC", + "OrganizationName": "TX - Family Medicine of Abilene, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Stephen M. Hayes, DPM", + "OrganizationName": "VA - Orthopaedic \u0026 Sports Specialist, In", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MILLENNIUM PHYSICIAN GROUP", + "OrganizationName": "IL - Pediatrics on Demand, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OrthoGeorgia", + "OrganizationName": "WA - Upton Family Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - Brandywine Family Medicine, P.A", + "OrganizationName": "CA - Rheumatology Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Medical Home", + "OrganizationName": "DC - Carol C. Jagdeo, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Horacio R Ramirez MD", + "OrganizationName": "NC - Shifa Pediatric Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Anesthesia Pain Treatment Center", + "OrganizationName": "NC - Calvary Medical Clinic PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Surgical Associates of Monterey Bay", + "OrganizationName": "FL - Nobhill Medical Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Mark J. Coronel M.D., P.C.", + "OrganizationName": "NY - Kevin E Wright MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Herbert L. Watkins, M.D.", + "OrganizationName": "MedExpress Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Robert O'Neill, MD", + "OrganizationName": "MedExpress Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Common Health", + "OrganizationName": "VA - Victoria Family Practice PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Premier Mobile Health Solutions", + "OrganizationName": "The Breast Care Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Wallstrom/ Barber", + "OrganizationName": "AZ - Primrose Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Cadena Family Practice, PLLC", + "OrganizationName": "TX - ARIE SALZMAN, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Ottey Bone \u0026 Joint Associates", + "OrganizationName": "NY - Central New York Child Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Cardiovascular Medicine Associates,", + "OrganizationName": "TX - ABC Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Women's Health Partners, LLC", + "OrganizationName": "CA - Shervin Alborzian, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Rodney L. Ellis MD, PC", + "OrganizationName": "AAA Allergy \u0026 Asthma", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Corner Health Center", + "OrganizationName": "AROC Radiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - East-West Medical Group", + "OrganizationName": "CAR Addiction \u0026 Recovery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Dr. Ajay Reddy LLC", + "OrganizationName": "CCS Student Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - MOORE FAMILY MEDICINE PA", + "OrganizationName": "CLK Physical Therapy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Orthopedic Foot and Ankle Institute", + "OrganizationName": "CMG Counseling Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Doctors First PC", + "OrganizationName": "CMG Pain \u0026 Rehab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Legacy Medical PLLC", + "OrganizationName": "CMG Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Christopher Cowher MD, PLLC", + "OrganizationName": "CUC Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Rose E Paiva, MD, LTD", + "OrganizationName": "ODI Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Pulmonary \u0026 Primary Care Associates", + "OrganizationName": "OOSM Ortho \u0026 Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Kevin L. Curlis, DPM", + "OrganizationName": "OPC Pain Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Eastern Shore Urgent Care, LLC", + "OrganizationName": "MetroSouth", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Ralph J. Napolitano, Jr., DPM LLC", + "OrganizationName": "CA - James Leonard Pinto, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Kirkland Family Medicine, PLLC", + "OrganizationName": "TX - Crossroads OBGYN and Wellness, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Mid Coast Dermatology, LLC", + "OrganizationName": "WY - Rendezvous Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Pediatric Assoc.of North Atlanta,PC", + "OrganizationName": "MO - Womens Health Partner, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Peter R. Bendetson, M.D.", + "OrganizationName": "IL - Scott Newcomb DPM, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Amy L. Friedenthal MD PC", + "OrganizationName": "LA - The Digestive Group, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Alexandria Surgery Inc", + "OrganizationName": "MN - The Minnesota Birth Center, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Manet Community Health Centers", + "OrganizationName": "TX - Kidney \u0026 Hypertension Assoc. of Dal", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Manet Community Health Center", + "OrganizationName": "TX - Graciela Moreno MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Northern Apache County Special", + "OrganizationName": "IA - Jeff Klein, DPM PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Clinical Deployment Stds", + "OrganizationName": "NORTHERN ARIZONA HEALTHCARE PROVIDER GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Palm Canyon Dermatology, PC", + "OrganizationName": "Stephen Murphy, M.D", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Anne Wang-Gomez, MD, PA", + "OrganizationName": "IL - Associates Internal Medicine Physic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Colon Liver Gastro Consultants", + "OrganizationName": "TN - Crossville Ortho \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Terry D. Howell, MD", + "OrganizationName": "MI - Fugle Orthopedics PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Family Podiatry PC", + "OrganizationName": "WA - Lake Washington Sports and Spine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Patient Portal", + "OrganizationName": "BoroPark", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Hybrid Medical Group, LLC", + "OrganizationName": "Trinity Women's Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Twin Lakes Family Practice", + "OrganizationName": "Trinity Women's Center- Dr. Smith-Blair", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - The Heart Center Cardiology, PC", + "OrganizationName": "DE - Lily Internal Medicine \u0026 Assoc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Houston Cardiovascular Consultants", + "OrganizationName": "SC - Litchfield Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Anita S Westafer, MD PA", + "OrganizationName": "TX - Keith Schauder MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - John Venditto MD PC", + "OrganizationName": "FL - Homestead Pediatric Associates, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Clinical Deployment Stds 2", + "OrganizationName": "IL - Housecalls Done Wright", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Helena Family Podiatry, P.C.", + "OrganizationName": "GA - Academy Orthopedics LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Foot Care", + "OrganizationName": "PA - S.W. Leehan, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alabama Podiatry", + "OrganizationName": "Shore Physicians Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ankle and Foot Center", + "OrganizationName": "MA - Eaton Medical Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Atlantic Foot and Ankle Associates", + "OrganizationName": "OH - Robert Gnade MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Burbank Podiatry Associates", + "OrganizationName": "LA - Family Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cambridge Foot \u0026 Ankle Associates", + "OrganizationName": "MI - Caritas Center for Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FOOT AND ANKLE ALLIANCE INC.", + "OrganizationName": "MA - Associates in Women's Health Care,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Foot Health Center", + "OrganizationName": "NY - Comprehensive Allergy and Asthma Ca", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Foot and Ankle Associates of Florida", + "OrganizationName": "CT - TAC Holdings, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "INDIANA PODIATRY GROUP INC", + "OrganizationName": "ME - Wells Family Practice, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orlando Foot and Ankle", + "OrganizationName": "TX - Advanced Heart Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennessee Podiatry", + "OrganizationName": "GA - Associates in Obstetrics and Gyneco", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health", + "OrganizationName": "Advanced Urgent Care \u0026 Occupational Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Florida Vascular Care", + "OrganizationName": "Injury Care of Colorado", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Florida Vein Center", + "OrganizationName": "Injury Care of Colorado Physical Therapy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Georgia", + "OrganizationName": "Platte River Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Indiana", + "OrganizationName": "NJ - Stern Family Practice, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Kentucky", + "OrganizationName": "NC - Integra Rehab Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Los Angeles", + "OrganizationName": "IL - Senior Care Physicians of Illinois", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Orange County", + "OrganizationName": "TX - Texas Foot Surgeons, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Pensacola", + "OrganizationName": "OR - Synergy Women's Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Plus", + "OrganizationName": "IL - Advanced Endocrinology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health San Bernardino", + "OrganizationName": "TX - Hill Country Family Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health San Diego", + "OrganizationName": "CA - Katayoon Shahinfar MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Upperline Health Vascular Care Georgia", + "OrganizationName": "GA - We Care Family Practice, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Village Podiatry", + "OrganizationName": "LA - Batts Family Practitioners, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Hanjani, P.C.", + "OrganizationName": "IN - Interventional Spine and Pain, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Coastal Women's Care, PC", + "OrganizationName": "PA - Joseph W. Price M.D. \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Gregg K. Satow, M.D.", + "OrganizationName": "NC - Wake ENT Specialists, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - South Florida Ear, Nose and Throat,", + "OrganizationName": "TX - Suncoast Medical Group, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Donald C Siegel MD FACS", + "OrganizationName": "MA - Taunton Urologic Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Peds Care After Hours", + "OrganizationName": "CO - Front Range Orthopaedics, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Family Healthcare PA", + "OrganizationName": "ME - Max Health Maine LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Cheaha Women's Health and Wellness", + "OrganizationName": "AZ - James Longton, DPM, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - National Church Residences Medical", + "OrganizationName": "Northwest Hand Specialist, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Live Well Neurology and Sleep", + "OrganizationName": "NJ - Trinity Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Renaissance", + "OrganizationName": "VA - James R Clark, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Horizon Surgical, PC", + "OrganizationName": "NC - Karen L Smith MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Internal Medicine Care, Inc.", + "OrganizationName": "Wright State Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Asif M Chaudhry MD", + "OrganizationName": "TN - Cox Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brian Hasse FNP", + "OrganizationName": "Texas Colon and Rectal Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "James A Cain III MD", + "OrganizationName": "FL - Family Care Center Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MVP Imaging LLC", + "OrganizationName": "MA - Bourne Family Medicine PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MVP Physical Therapy PLLC", + "OrganizationName": "OH - University Suburban Gyn, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Maria Shepard MD", + "OrganizationName": "MD - Ace Urgent Care \u0026 Clinic- Collector", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NEURO NETWORK LLC", + "OrganizationName": "OH - Ohio Sleep and Pulmonary Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Omar D Vidal MD", + "OrganizationName": "IL - Burnham Medical Center, Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pamela Jean Chapman CRNA", + "OrganizationName": "RI - Amrut R Patel MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Spinal Technologies LLC", + "OrganizationName": "CA - Michael Taymor, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Spine Associates", + "OrganizationName": "UT - Advanced Family Health Care, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Surgical Spectrum LLC", + "OrganizationName": "Advanced Vein Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Dr Bruce Banias MD", + "OrganizationName": "Advanced Wound Care Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Antonio Mancera", + "OrganizationName": "KS - Compassionate Family Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Orthopaedic Center of Vero Beach", + "OrganizationName": "MICHELLE R. REYNA, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Meridian Medical Services", + "OrganizationName": "Methodist OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Amarillo Endoscopy Center", + "OrganizationName": "PA - Miriam Shustik MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Contra Costa Medical Grp for Women", + "OrganizationName": "TX - Madsen Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Surgical Assoc of Western NY, PC", + "OrganizationName": "WA - CENTER FOR WOMEN'S HEALTH", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PCS BRAND", + "OrganizationName": "TN - James W Adams II, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Milltown Family Medicine, LLC", + "OrganizationName": "IL - Grand Vein Specialists, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Robert Vartabedian MD,PC", + "OrganizationName": "IL - Apple-A-Day Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Robinson, M.D. \u0026 Clinton, M.D. P.C.", + "OrganizationName": "TN - Siskin Ctr Developmental Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Valley Vista Medical Center PLLC", + "OrganizationName": "VA - Children and Adolescent Pediatric", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Center for a Healthy Mind and Wellb", + "OrganizationName": "MD - Matcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Blue Ridge Heart \u0026 Wellness", + "OrganizationName": "OR - Stephen M. Hayes, DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ann McFarlane", + "OrganizationName": "MILLENNIUM PHYSICIAN GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Intergalactic Pediatrics", + "OrganizationName": "OrthoGeorgia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Katherine Short, ND", + "OrganizationName": "DE - Brandywine Family Medicine, P.A", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Marcie Hamrick, MD", + "OrganizationName": "Family Medical Home", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Molly Gray, ND", + "OrganizationName": "Horacio R Ramirez MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ONE SKY FAMILY MEDICINE PLLC", + "OrganizationName": "NJ - Anesthesia Pain Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tracy McDaniel ND, and Lauren Whitaker, ND", + "OrganizationName": "CA - Surgical Associates of Monterey Bay", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fort Payne RHC", + "OrganizationName": "NY - Mark J. Coronel M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fort Payne Clinic Corp", + "OrganizationName": "TX - Herbert L. Watkins, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fort Payne HBP LLC", + "OrganizationName": "FL - Robert O'Neill, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Port Washington Gastroenterology PC", + "OrganizationName": "Common Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Metro ENT, PA", + "OrganizationName": "Premier Mobile Health Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - HMA_Master", + "OrganizationName": "CA - Wallstrom/ Barber", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Trinity North Dallas Neurology, PLL", + "OrganizationName": "TX - Cadena Family Practice, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Lizellen La Follette, MD", + "OrganizationName": "FL - Ottey Bone \u0026 Joint Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALEXANDRE NADER, MD", + "OrganizationName": "TX - Cardiovascular Medicine Associates,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CAPE AND ISLANDS DIGESTIVE DISEASE ASSOCIATES, PC", + "OrganizationName": "MD - Women's Health Partners, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CAPE AND ISLANDS ENDOSCOPY CENTER LLC", + "OrganizationName": "MD - Rodney L. Ellis MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Ahmed A. Rahman, MD. PC", + "OrganizationName": "MI - Corner Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Thomas G. Fontenot Family Clinic", + "OrganizationName": "PA - East-West Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Gatdula \u0026 Gatdula, M.D., P.A.", + "OrganizationName": "MD - Dr. Ajay Reddy LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Harish Thakkar", + "OrganizationName": "NC - MOORE FAMILY MEDICINE PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Medwell Women's Medical Services", + "OrganizationName": "NV - Orthopedic Foot and Ankle Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Bay Street OB GYN", + "OrganizationName": "MD - Doctors First PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Old Dominion Pediatrics, PLLC", + "OrganizationName": "NY - Legacy Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Ellen Michaelson, MD, PC", + "OrganizationName": "WV - Christopher Cowher MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - North Perimeter OB/GYN", + "OrganizationName": "NV - Rose E Paiva, MD, LTD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Moon Valley Medical Center, P.C.", + "OrganizationName": "MA - Pulmonary \u0026 Primary Care Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Jo R Johnson MD", + "OrganizationName": "MD - Kevin L. Curlis, DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Cornerstone Pain Management", + "OrganizationName": "AL - Eastern Shore Urgent Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Marion Pain Management Center Inc", + "OrganizationName": "OH - Ralph J. Napolitano, Jr., DPM LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Primary Care of TN, LLC", + "OrganizationName": "WA - Kirkland Family Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "YAKIMA HMA PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "ME - Mid Coast Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BAYFRONT CONVENIENT CARE LLC", + "OrganizationName": "GA - Pediatric Assoc.of North Atlanta,PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BAYFRONT HEALTH IMAGING CENTER LLC", + "OrganizationName": "MA - Peter R. Bendetson, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BAYFRONT MEDICAL CENTER LLC", + "OrganizationName": "VA - Amy L. Friedenthal MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BAYFRONT PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "LA - Alexandria Surgery Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BAYFRONT WELLNESS CENTER LLC", + "OrganizationName": "MA - Manet Community Health Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bartow Physician Mgmnt LLC", + "OrganizationName": "Manet Community Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Health Brooksville", + "OrganizationName": "AZ - Northern Apache County Special", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Health Spring Hill", + "OrganizationName": "TN - Clinical Deployment Stds", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Urgent Care", + "OrganizationName": "AZ - Palm Canyon Dermatology, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "COLLIER BLVD PHYSICIAN MGMNT LLC", + "OrganizationName": "TX - Anne Wang-Gomez, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "COLLIER NEURO VASC MEDICAL GROUP LLC", + "OrganizationName": "Colon Liver Gastro Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "COLLIER PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "MI - Terry D. Howell, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HOSPITAL ADT", + "OrganizationName": "DC - Family Podiatry PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Haines City Physician Mgmnt LLC", + "OrganizationName": "The Patient Portal", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Haines City Urgent Care LLC", + "OrganizationName": "IL - Hybrid Medical Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JASPER MEDICAL GROUP LLC", + "OrganizationName": "TN - Twin Lakes Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Key West Physician Management LLC", + "OrganizationName": "AL - The Heart Center Cardiology, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Key West Psychiatry Group", + "OrganizationName": "TX - Houston Cardiovascular Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LIVE OAK LLC", + "OrganizationName": "FL - Anita S Westafer, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Shore Medical Group LLC", + "OrganizationName": "NY - John Venditto MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lehigh Physician Management LLC", + "OrganizationName": "TN - Clinical Deployment Stds 2", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Live Oak Medical Group LLC", + "OrganizationName": "AL - Helena Family Podiatry, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MUNROE HMPN LLC", + "OrganizationName": "Advanced Foot Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Melbourne Medical Group LLC", + "OrganizationName": "Alabama Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Osler Medical Group LLC", + "OrganizationName": "Ankle and Foot Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pasco Hernando Phys Mgmnt LLC", + "OrganizationName": "Atlantic Foot and Ankle Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rockledge Medical Group LLC", + "OrganizationName": "Burbank Podiatry Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rockledge Urgent Care LLC", + "OrganizationName": "Cambridge Foot \u0026 Ankle Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SANTA ROSA HB MEDICAL SERVICES, LLC", + "OrganizationName": "FOOT AND ANKLE ALLIANCE INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "STARKE RHC", + "OrganizationName": "Family Foot Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Santa Rosa Phys Mgmnt LLC", + "OrganizationName": "Foot and Ankle Associates of Florida", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Santa Rosa Urgent Care LLC", + "OrganizationName": "INDIANA PODIATRY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sebastian Physician Management LLC", + "OrganizationName": "Orlando Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sebring Physician Management LLC", + "OrganizationName": "Tennessee Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Health Gulf Coast", + "OrganizationName": "Upperline Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Health Gulf Coast Psychiatric Group", + "OrganizationName": "Upperline Health Florida Vascular Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Health Port Charlotte", + "OrganizationName": "Upperline Health Florida Vein Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Health Punta Gorda", + "OrganizationName": "Upperline Health Georgia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Health Punta Gorda Psychiatric Group", + "OrganizationName": "Upperline Health Indiana", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "St Cloud Physician Management LLC", + "OrganizationName": "Upperline Health Kentucky", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Starke Medical Group LLC", + "OrganizationName": "Upperline Health Los Angeles", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHESTER MEDICAL GROUP LLC", + "OrganizationName": "Upperline Health Orange County", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "EAST GEORGIA PHYSICIAN MGMNT LLC", + "OrganizationName": "Upperline Health Pensacola", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GEORGIA PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "Upperline Health Plus", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HAMLET PPM LLC", + "OrganizationName": "Upperline Health San Bernardino", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HAMLET PSYCH PPM LLC", + "OrganizationName": "Upperline Health San Diego", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HARTSVILLE MEDICAL GROUP LLC", + "OrganizationName": "Upperline Health Vascular Care Georgia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MONROE PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "Village Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MOORESVILLE PPM LLC", + "OrganizationName": "MA - Hanjani, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "NC - Coastal Women's Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "STATESBORO MEDICAL GROUP LLC", + "OrganizationName": "CA - Gregg K. Satow, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "STATESBORO PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "FL - South Florida Ear, Nose and Throat,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "STATESVILLE MEDICAL GROUP LLC", + "OrganizationName": "GA - Donald C Siegel MD FACS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "STATESVILLE PYSCH MEDICAL GROUP LLC", + "OrganizationName": "VA - Peds Care After Hours", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WILLIAMSON PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "NC - Carolina Family Healthcare PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "COCKE COUNTY HMA LLC", + "OrganizationName": "AL - Cheaha Women's Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JAMESTOWN PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "OH - National Church Residences Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JAMESTOWN PSYCHIATRIC GROUP", + "OrganizationName": "Live Well Neurology and Sleep", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KNOXVILLE CARDIOLOGY PPM LLC", + "OrganizationName": "TX - Renaissance", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KNOXVILLE PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "AL - Horizon Surgical, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KNOXVILLE PHYSICIAN MANAGEMENT PSYCH LLC", + "OrganizationName": "OH - Internal Medicine Care, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LEBANON PHYS MGMNT LLC", + "OrganizationName": "Asif M Chaudhry MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TENNOVA LAFOLLETTE MEDICAL CENTER CLINIC", + "OrganizationName": "Brian Hasse FNP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TULLAHOMA PHYSICIAN MGMNT LLC", + "OrganizationName": "James A Cain III MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alliance Health Partners RHC LLC", + "OrganizationName": "MVP Imaging LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Amory Physician Management LLC", + "OrganizationName": "MVP Physical Therapy PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Batesville Medical Group LLC", + "OrganizationName": "Maria Shepard MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Batesville Physician MGT Pysch LLC", + "OrganizationName": "NEURO NETWORK LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Biloxi Physician Mgmnt LLC", + "OrganizationName": "Omar D Vidal MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Biloxi Physician Mgmnt Pysch LLC", + "OrganizationName": "Pamela Jean Chapman CRNA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brandon Physician Management", + "OrganizationName": "Spinal Technologies LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CMWS_CMMC WOUND MANAGEMENT", + "OrganizationName": "Spine Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Clarksdale Anesthesiologist Group", + "OrganizationName": "Surgical Spectrum LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Clarksdale Phys Mgmnt LLC", + "OrganizationName": "OH - Dr Bruce Banias MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crossgates Medical Group LLC", + "OrganizationName": "TX - Antonio Mancera", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Flowood River Oaks Medical Group LLC", + "OrganizationName": "FL - Orthopaedic Center of Vero Beach", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JACKSON HB MEDICAL SERVICES, LLC", + "OrganizationName": "CA - Meridian Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Madison Phys Mgnt LLC", + "OrganizationName": "TX - Amarillo Endoscopy Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mississippi Hospitalists LLC", + "OrganizationName": "CA - Contra Costa Medical Grp for Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Natchez Phys Mgnt LLC", + "OrganizationName": "NY - Surgical Assoc of Western NY, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OCCMED", + "OrganizationName": "PCS BRAND", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "River Oaks Management LLC", + "OrganizationName": "PA - Milltown Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "River Oaks Management Pysch LLC", + "OrganizationName": "MI - Robert Vartabedian MD,PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Vicksburg Physician Mgmnt LLC", + "OrganizationName": "VA - Robinson, M.D. \u0026 Clinton, M.D. P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALABAMA PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "AZ - Valley Vista Medical Center PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BLACKWELL HMPN LLC", + "OrganizationName": "FL - Center for a Healthy Mind and Wellb", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CLINTON HMPN LLC", + "OrganizationName": "VA - Blue Ridge Heart \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CLINTON RHC", + "OrganizationName": "Ann McFarlane", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DEACONESS PHYSICIAN SERVICES", + "OrganizationName": "Intergalactic Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DURANT PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "Katherine Short, ND", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DURIND_URGENT CARE OF ATOKA-INDUSTRIAL", + "OrganizationName": "Marcie Hamrick, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FORT SMITH BEHAVIORAL HEALTH SERVICES", + "OrganizationName": "Molly Gray, ND", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FORT SMITH PBC BEHAVIORAL HEALTH SERVICES", + "OrganizationName": "ONE SKY FAMILY MEDICINE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FORT SMITH PBC MGMNT LLC", + "OrganizationName": "Tracy McDaniel ND, and Lauren Whitaker, ND", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FORT SMITH PHYS MGMT LLC", + "OrganizationName": "Fort Payne RHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GADSDEN PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "Fort Payne Clinic Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GADSDEN PHYSICIAN MGT PSYCHIATRY", + "OrganizationName": "Fort Payne HBP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KAY COUNTY/ BLACKWELL RHC", + "OrganizationName": "NY - Port Washington Gastroenterology PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KENNETT PHYS MGMT LLC", + "OrganizationName": "TX - Metro ENT, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KENNETT PHYS MGMT PSYCH LLC", + "OrganizationName": "FL - HMA_Master", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KENNETT RHC LLC", + "OrganizationName": "TX - Trinity North Dallas Neurology, PLL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kay County Clinic", + "OrganizationName": "CA - Lizellen La Follette, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LONE STAR PHYSICIAN MGMNT INC", + "OrganizationName": "ALEXANDRE NADER, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MARSHALL COUNTY HMPN LLC", + "OrganizationName": "CAPE AND ISLANDS DIGESTIVE DISEASE ASSOCIATES, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MARSHALL COUNTY RHC LLC", + "OrganizationName": "CAPE AND ISLANDS ENDOSCOPY CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MAYES COUNTY HMPN LLC", + "OrganizationName": "VA - Ahmed A. Rahman, MD. PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MIDWEST CITY PHYS MGMNT LLC", + "OrganizationName": "LA - Thomas G. Fontenot Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT LLC", + "OrganizationName": "MD - Gatdula \u0026 Gatdula, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT PSYCH LLC", + "OrganizationName": "TX - Harish Thakkar", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "POPLAR BLUFF RHC LLC", + "OrganizationName": "NY - Medwell Women's Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SEMINOLE HMPN LLC", + "OrganizationName": "MA - Bay Street OB GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SEMINOLE RHC", + "OrganizationName": "VA - Old Dominion Pediatrics, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VAN BUREN LLC", + "OrganizationName": "OR - Ellen Michaelson, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Peter E Lavine MD", + "OrganizationName": "GA - North Perimeter OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Southern Sports Medicine and Orthop", + "OrganizationName": "AZ - Moon Valley Medical Center, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Internal Medicine Associates, PA", + "OrganizationName": "ME - Jo R Johnson MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - TIMC", + "OrganizationName": "TX - Cornerstone Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Cardiology, P.C.", + "OrganizationName": "FL - Marion Pain Management Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Womens Integrated Healthcare", + "OrganizationName": "TN - Primary Care of TN, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Childrens Healthcare Inc.", + "OrganizationName": "YAKIMA HMA PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Menchavez Pediatrics", + "OrganizationName": "Advanced Cardiology of Key West", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CCWV Confidential", + "OrganizationName": "Bravera General Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Community Care of West Virginia", + "OrganizationName": "Bravera Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - SCOTT I. BOGGS P.L.L.C.", + "OrganizationName": "Bravera OB/GYN and Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Richmond Hill Medical Services, P.C", + "OrganizationName": "Bravera Obstetrics and Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mount Sinai Marathon Medical", + "OrganizationName": "Bravera Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Nassau PCs", + "OrganizationName": "Bravera Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Fariba Pajoohi MD PA", + "OrganizationName": "Carneiro Institute for Hand Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Beth Houck MD, LLC", + "OrganizationName": "Collier Regional Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - ASSOCIATED SPECIALISTS IN MEDICINE,", + "OrganizationName": "Complete Women’s Care of Naples", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - The Womans Clinic", + "OrganizationName": "Florida Keys Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Rheumatology \u0026 Arthritis Consultant", + "OrganizationName": "Keys Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Pediatric Diagnostic Services", + "OrganizationName": "Lower Keys Behavioral Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Urgent Care Of Erwin, LLC", + "OrganizationName": "Lower Keys Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - CO Bariatric Surgery Institute", + "OrganizationName": "Lower Keys Primary Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Peter Masucci, M.D.", + "OrganizationName": "Lower Keys Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Pediatrics at Oyster Point, PLLC", + "OrganizationName": "Pace Primary Care and Walk-In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - AZ Heart Rhythm Center", + "OrganizationName": "Physicians Regional Marco Island", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Neuro Care of Virginia, P.C.", + "OrganizationName": "Physicians Regional Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Ayala Medical Corporation, Inc.", + "OrganizationName": "Physicians Regional Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Northcross Health Maintenance", + "OrganizationName": "Physicians Regional Medical Group Pharmacy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Carolina Forest", + "OrganizationName": "Primary Care Center of Key West", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Pawleys Island, SC", + "OrganizationName": "Santa Rosa Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Surfside Beach, SC", + "OrganizationName": "ShorePoint Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Strand Internists - Surfside Beach, SC", + "OrganizationName": "ShorePoint Cardiology and Cardiac Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Hal J Freiman, M.D.", + "OrganizationName": "ShorePoint Cardiothoracic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Directors Capital Ventures Inc.", + "OrganizationName": "ShorePoint Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Performance Pediatrics \u0026 Sports Med", + "OrganizationName": "ShorePoint Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Catherine Laruffa MD", + "OrganizationName": "ShorePoint General Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Personal MD, LLC", + "OrganizationName": "ShorePoint Imaging", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Rafatjoo Izabal \u0026 Snider MDs", + "OrganizationName": "ShorePoint Internal Medicine and Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Harold S Samuel MD PLLC", + "OrganizationName": "ShorePoint Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Consultants in Epilepsy \u0026 Neurology", + "OrganizationName": "ShorePoint Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Idaho Neurology", + "OrganizationName": "ShorePoint Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Movement Disorder Consultants PLLC", + "OrganizationName": "ShorePoint Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Patricia E Gabriel DO \u0026 Associates", + "OrganizationName": "ShorePoint Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Comprehensive Neurology Services", + "OrganizationName": "ShorePoint Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Health thru Care, LLC", + "OrganizationName": "ShorePoint Obstetrics and Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - WomenCare", + "OrganizationName": "ShorePoint Obstetrics and Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - McLean County Orthopedics", + "OrganizationName": "ShorePoint Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Hartford Cardiac Laboratory, P.C.", + "OrganizationName": "ShorePoint Plastic and Reconstructive Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Covington Bone \u0026 Joint, PC", + "OrganizationName": "ShorePoint Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Raymond Paul-Blanc MD PC", + "OrganizationName": "ShorePoint Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Anthony A. McFarlane MD PC INC", + "OrganizationName": "ShorePoint Primary Care and Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Evenhuis Cardiology \u0026 Internal Med", + "OrganizationName": "ShorePoint Primary Care and Walk-In", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Wilmington Internal Medicine PA", + "OrganizationName": "ShorePoint Primary Care and Walk-in", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DENNIS M LEWIS, MD", + "OrganizationName": "ShorePoint Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FRANK R WHEELER, MD", + "OrganizationName": "ShorePoint Pulmonology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JAMES R WHITE, DO", + "OrganizationName": "ShorePoint Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LANDER REGIONAL HOSPITALISTS", + "OrganizationName": "ShorePoint Rheumatology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RIVERTON PHYSICIAN PRACTICES", + "OrganizationName": "ShorePoint Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WIND RIVER PEDIATRICS", + "OrganizationName": "South Florida Medical and Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - SCION - SageWest", + "OrganizationName": "The Heart Institute of the Keys", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Geetha B Kandimala, MD, PC", + "OrganizationName": "Campbell Surgical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "General Practice", + "OrganizationName": "Carolina Pediatric and Adolescent Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Occupational Medicine Office", + "OrganizationName": "Carolina Urology Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Urgent Care Office", + "OrganizationName": "Davis Family Medicine Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - North Beach Vascular \u0026 Aesthetics", + "OrganizationName": "Davis Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Steven A. Kushner DO P.C.", + "OrganizationName": "Davis Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Aviva Healthcare, Inc.", + "OrganizationName": "Davis Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carolinas Medical Alliance", + "OrganizationName": "First in Flight Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - OptumCare Florida, LLC", + "OrganizationName": "Harbor Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Ibrahim Helmy, M.D., INC.", + "OrganizationName": "Hospitalists of Lake Norman", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Chesapeake Surgical Associates", + "OrganizationName": "Lake Norman Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Ventura Advanced Surgical Assoc.", + "OrganizationName": "Lake Norman Medical Group Heart and Vascular Mooresville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Cooper Medical Associates, LLC", + "OrganizationName": "Lake Norman Neonatology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Mount San Rafael Hospital Clinic", + "OrganizationName": "Lake Norman Neurological \u0026 Spinal Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Behavioral Health", + "OrganizationName": "Lake Norman Orthopedic \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Breast Care", + "OrganizationName": "Lake Norman Orthopedic Spine Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Healthcare Departments", + "OrganizationName": "Lake Norman Orthopedics and Hand Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Medical Group", + "OrganizationName": "Lakeshore Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Medical Specialists", + "OrganizationName": "Lakeshore Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Neurosciences-Neuro Endovascular Surgery", + "OrganizationName": "Mooresville Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Neurosciences-Neurology", + "OrganizationName": "NorthPoint Surgical; Primary Care Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Neurosciences-Neurosurgery", + "OrganizationName": "Pinnacle Orthopedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Neurosciences-Pain Management", + "OrganizationName": "Primary Care Associates of Cornelius", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Obstetrics and Gynecology", + "OrganizationName": "Primary Care Associates of Davidson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Primary Care NC", + "OrganizationName": "Primary Care Associates of Huntersville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Primary Care VA", + "OrganizationName": "Primary Care Associates of Lake Norman", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Primary Care-Currituck", + "OrganizationName": "Primary Care Associates – Byers Creek", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Surgical Specialists-NC", + "OrganizationName": "Primary Care Associates – Denver", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Surgical Specialists-VA", + "OrganizationName": "Primary Care Associates – Williamson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Regional Transitional Care Clinic", + "OrganizationName": "Sherrill-Jackson Orthopedics Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Seaside Health Center at Atlantic Shores", + "OrganizationName": "Statesville Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Z-Chesapeake Regional-DO NOT USE", + "OrganizationName": "Statesville OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Z-Chesapeake Regional-DO NOT USE-", + "OrganizationName": "Statesville Orthopedics \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Z-Infectious Disease Consultants of Hampton Roads", + "OrganizationName": "Statesville Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Northern Virginia Internal Medicine", + "OrganizationName": "Statesville Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Albany Medical Group", + "OrganizationName": "Statesville Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Richard Joyce MD", + "OrganizationName": "The Center for Surgical Weight Loss", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "All Florida Orthopaedic Associates", + "OrganizationName": "East Tennessee Women’s Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brandon Orthopedic Associates", + "OrganizationName": "Fields’ Center for Women’s Health and Robotic Surgery at Tennova", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Florida Sports Orthopaedic and Spine Medicine", + "OrganizationName": "Irene and Howard H. Baker Cancer Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopaedic Associates of West Florida", + "OrganizationName": "LaFollette Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopaedic Specialties of Tampa Bay", + "OrganizationName": "Newport Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tampa Bay Orthopaedic Specialists", + "OrganizationName": "Primary Care of Tennessee at Tennova", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - David Alan Testa DO, PA", + "OrganizationName": "Tennova Bariatric Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GEORGIA HAND SHOULDER \u0026 ELBOW, PC", + "OrganizationName": "Tennova Cardiology of Lenoir City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GEORGIA SURGICAL CENTER ON PEACHTREE", + "OrganizationName": "Tennova Cardiothoracic Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Excellence Medical Center", + "OrganizationName": "Tennova Center for Occupational Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Paradise Valley Allergy Associates,", + "OrganizationName": "Tennova Digestive Disease Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Hines Dermatology Associates, Inc", + "OrganizationName": "Tennova Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Cloverleaf Family Medicine LLC", + "OrganizationName": "Tennova Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Baton Rouge Ear Nose \u0026 Throat", + "OrganizationName": "Tennova Gastroenterology – North", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Bainbridge Medical Associates, PC", + "OrganizationName": "Tennova General Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - West Ashley OB-GYN, PA", + "OrganizationName": "Tennova General Surgery – Jefferson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Rochester Hills Medical Center, PC", + "OrganizationName": "Tennova Healthcare – LaFollette Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Tate Medical Associates, LLC", + "OrganizationName": "Tennova Healthcare – Newport", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Malik Neurological Associates", + "OrganizationName": "Tennova Healthcare – Newport Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lori Hickson MD PA", + "OrganizationName": "Tennova Heart – Cardiothoracic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - Northwoods Family Orthopaedics, S.C", + "OrganizationName": "Tennova Heart – Jefferson CityTennova Heart – Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Powell Pediatric Care", + "OrganizationName": "Tennova Heart – LaFollette", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Center for Sports Med and Ortho", + "OrganizationName": "Tennova Heart – Tellico Village", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Queen Anne Medical Associates, PLLC", + "OrganizationName": "Tennova Infusion Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Medical Associates", + "OrganizationName": "Tennova Jefferson Women’s Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - GirlTalk\u0026 Gynecology, PC", + "OrganizationName": "Tennova LaFollette Geriatric Psychiatric Unit", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Chair City Family Medicine, PC", + "OrganizationName": "Tennova LaFollette Health \u0026 Rehabilitation Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Apex Health Internal Medicine", + "OrganizationName": "Tennova LaFollette Medical Center Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Apex Health North Shore Gynecology", + "OrganizationName": "Tennova LaFollette Outpatient Rehab Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Midlands Orthopaedics Surgery Center", + "OrganizationName": "Tennova LaFollette Sleep Disorders Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Midlands Orthopaedics and Neurosurgery", + "OrganizationName": "Tennova Neurology Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Valley Medical Group", + "OrganizationName": "Tennova Neurology Newport", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Modern Psychiatry and Wellness, LLC", + "OrganizationName": "Tennova Newport Convalescent Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Dr. Adeeti Gupta", + "OrganizationName": "Tennova Newport – 4th Street", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Elizabeth Cook, MD, PC", + "OrganizationName": "Tennova Orthopedics – Turkey Creek", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Marshall S. Frumin, MD", + "OrganizationName": "Tennova Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Olympia Orthopaedic Associates", + "OrganizationName": "Tennova Physician Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Gandhi GI LLC", + "OrganizationName": "Tennova Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Kenan Kirkendall, DO PC", + "OrganizationName": "Tennova Primary Care Caryville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Quality Medical Center of Union", + "OrganizationName": "Tennova Primary Care Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALL WOMEN'S HEALTH, LLC", + "OrganizationName": "Tennova Primary Care and Occupational Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALLIANCE OBGYN GROUP", + "OrganizationName": "Tennova Pulmonary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ARBOR OB/GYN WOMEN'S CARE", + "OrganizationName": "Tennova Pulmonology Newport", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ATHENS WOMEN'S CLINIC, LLC", + "OrganizationName": "Tennova Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BRIAN LEVITT, MD", + "OrganizationName": "Tennova Thyroid \u0026 Parathyroid Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC020_KENNESAW GYNECOLOGY LLC", + "OrganizationName": "Tennova Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC021_GEORGIA CENTER FOR FEMALE HEALTH II, LLC", + "OrganizationName": "Tennova Vascular and General Surgery – Turkey Creek", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CENTRAL UNIFIED OBSTETRICS AND GYN,LLC", + "OrganizationName": "Tennova Walk-in Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CRABAPPLE GYNECOLOGY, LLC", + "OrganizationName": "Tennova Women’s Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DELETE", + "OrganizationName": "Tennova Women’s Care Newport", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Unified Women's Care of Georgia", + "OrganizationName": "Tennova Women’s Care – Jefferson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GENESIS WOMEN'S CENTER", + "OrganizationName": "Tennova Women’s Care – LaFollette", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GWINNETT'S PROGRESSIVE HEALTH CARE FOR WOMEN", + "OrganizationName": "Tennova Women’s Care – Lenoir City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HAVEN OB/GYN", + "OrganizationName": "Tennova Women’s Health Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MT VERNON OB-GYN", + "OrganizationName": "Tenova Healthcare – LaFollette", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTH GEORGIA OBSTETRICS \u0026 GYNECOLOGY LLC", + "OrganizationName": "Town Creek Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHLAKE WOMEN'S CENTER, LLC", + "OrganizationName": "West Knox Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PRESTIGE HEALTHCARE OB/GYN LLC", + "OrganizationName": "West Knoxville Heart at Tennova", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RAYBON OBSTETRICS AND GYNECOLOGY ASSOCIATES, LLC.", + "OrganizationName": "Biloxi HMA Pulmonology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UNIFIED PREMIER WOMEN'S CARE, LLC", + "OrganizationName": "Biloxi Neurology Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WOMEN'S HEALTH ASSOCIATES GROUP", + "OrganizationName": "Byram Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Flagstaff Primary Care, PA", + "OrganizationName": "Cardiovascular Services of Central Mississippi, Cardiovascular Services at River Oaks", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Pain Centers, SC", + "OrganizationName": "CarePlus", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dupage Foot and Ankle", + "OrganizationName": "CarePlus Biloxi Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Elizabeth Pacocha DPM, PC", + "OrganizationName": "CarePlus Brandon", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Oak Brook Centre For Health, Ltd.", + "OrganizationName": "CarePlus Clinton Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Oak Brook Centre for Health", + "OrganizationName": "CarePlus Flora Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Lake Oswego Family Physicians P.C.", + "OrganizationName": "CarePlus Germantown Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Lynn Albertson ARNP, PS", + "OrganizationName": "CarePlus Highland Colony Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - East TN Regional OB/GYN", + "OrganizationName": "CarePlus Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Mina Nayak M.D. P.C.", + "OrganizationName": "CarePlus Lakeland Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Kamlesh Nayak M.D. P.C.", + "OrganizationName": "CarePlus Madison Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Rehab Assocs of the Mainline", + "OrganizationName": "CarePlus Nissan Parkway Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Ear Nose and Throat", + "OrganizationName": "CarePlus Occupational Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Southern Nevada Surgery Specialists", + "OrganizationName": "CarePlus Parham Bridges Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Avalon Medical, LLC", + "OrganizationName": "CarePlus Promenade Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Southeast Texas Cardiology Associat", + "OrganizationName": "CarePlus Reservoir Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - DSK Medical Group, PC", + "OrganizationName": "CarePlus Reservoir Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Midlothian Primary Care Doctors PLLC", + "OrganizationName": "Center for Industrial Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pannaben H Nangha, MD, PLLC", + "OrganizationName": "Center for Infections Disease", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Sonoran Orthopaedic Trauma Surgeons", + "OrganizationName": "Central Mississippi Bone and Joint Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Healthy Solutions Primary Care, LLC", + "OrganizationName": "Coast Oncology and Hematology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Upper Hand Orthopaedics, P.C.", + "OrganizationName": "Crossgates Critical Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Midwest Reproductive Center", + "OrganizationName": "Crossgates Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dallas Ear, Nose \u0026 Throat Clinic", + "OrganizationName": "Crossgates River Oaks Hospitalists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Barry J. Fish, M.D. LLC", + "OrganizationName": "Hicks Healthcare for Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Urology Group Of New Jersey", + "OrganizationName": "Hinds Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Dianne McNeill, MD, PLLC", + "OrganizationName": "Internal Medicine at Cedar Lake", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Injury Specialists of Oregon, P.C.", + "OrganizationName": "Lakeview Family Medicine Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Federal Healthcare Inc", + "OrganizationName": "Madison River Oaks Hospitalist Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Albemarle Pediatrics", + "OrganizationName": "Merit Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - New Orleans Headache \u0026 Neurology", + "OrganizationName": "Merit Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - West Cobb Medical Associates", + "OrganizationName": "Merit Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Arbor Family Medicine, PLLC", + "OrganizationName": "Merit Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Richard A. Dougherty, MD, PA", + "OrganizationName": "Merit Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - French Broad Pediatric Associates", + "OrganizationName": "Merit Health Walk-In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northampton Urgent Care", + "OrganizationName": "Merit Health Walk-In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Carolina Nephrology \u0026 Endocrinology", + "OrganizationName": "Merit Health Walk-In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - KANSAS CITY PEDIATRICS, L.L.C.", + "OrganizationName": "Merit Health Walk-In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Valley Hospital", + "OrganizationName": "Merit Health Walk-In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Employee Health", + "OrganizationName": "Neck and Head Surgical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Medical Group", + "OrganizationName": "ROH Center for Infectious Disease", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Medical Group Behavioral Health", + "OrganizationName": "ROH Hospitalists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Medical Group Pediatrics", + "OrganizationName": "Rankin Orthopedic Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Atlantic Obstetrics and Gynecology", + "OrganizationName": "Rankin Surgical Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Haiba Sonyika MD, LLC", + "OrganizationName": "Ridgeland Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Southeast Rheumatology \u0026 Immunology", + "OrganizationName": "The Obesity Center at River Oaks", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Sharon M. Lawrence, D.O.,LLC", + "OrganizationName": "Total Health Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Westview Pediatric Care LLC", + "OrganizationName": "Transformations at River Oaks", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lindsay H. White, M.D.", + "OrganizationName": "Alliance Health Durant Clinics Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Kathleen O. Edmunds, MD", + "OrganizationName": "Alliance Health Medical Group Primary Care Atoka", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Bay Area Osteopathic INC", + "OrganizationName": "AllianceHealth Clinic Clinto", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Chary Primary Care", + "OrganizationName": "AllianceHealth Clinic Clinton Hills", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FAIRFAX LOUDOUN OB-GYN", + "OrganizationName": "AllianceHealth Clinic Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "National Vascular Associates", + "OrganizationName": "AllianceHealth Clinic Thomas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Hector L Salcedo, MD", + "OrganizationName": "AllianceHealth Clinic Weatherford", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - The Dermatology Group, Inc", + "OrganizationName": "AllianceHealth Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Penobscot Valley Hospital", + "OrganizationName": "AllianceHealth Durant Clinics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Prime Internal Medicine", + "OrganizationName": "AllianceHealth Durant Clinics Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Ahearn \u0026 Associates Medical Center", + "OrganizationName": "AllianceHealth Durant Clinics Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Discovery Medical Network Matagorda", + "OrganizationName": "AllianceHealth Madill", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Surgical Clinic St. Clair, PC", + "OrganizationName": "AllianceHealth Madill Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Hudson Allergy", + "OrganizationName": "AllianceHealth Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - ORTHOPEDIC ASSOCIATES OF NORTHERN C", + "OrganizationName": "AllianceHealth Medical Group Anesthesia Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - IPMLN", + "OrganizationName": "AllianceHealth Medical Group Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Tibor C. Kopjas, MD S.C.", + "OrganizationName": "AllianceHealth Medical Group Cardiovascular Care Durant", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Maine Institute for Headache", + "OrganizationName": "AllianceHealth Medical Group Ear Nose and Throat Durant", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Pain Management Center", + "OrganizationName": "AllianceHealth Medical Group Ear Nose and Throat Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - AirCapitalCardiology, PA", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Ark City (KS)", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Sullivan Family Medicine Clinic", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Bryan County", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Women for Women Medical Associates", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - MARANACOOK FAMILY HEALTH CARE", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Kendall Family Medical Center", + "OrganizationName": "AllianceHealth Medical Group Family Medicine on 14th Street", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Ob-Gyn Assoc of the Central Coast", + "OrganizationName": "AllianceHealth Medical Group Family Practice Clinton Hills", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Ghebru Woldemichael MD", + "OrganizationName": "AllianceHealth Medical Group General Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Donna H. Canney, MD PhD PA", + "OrganizationName": "AllianceHealth Medical Group General Surgery Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Dorothy M Thayer MD, LLC", + "OrganizationName": "AllianceHealth Medical Group General Surgery on 14th Street", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Dr. Martin's OB/GYN Inc.", + "OrganizationName": "AllianceHealth Medical Group General Surgery on University", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MEMORIAL HEALTH WASHINGTON", + "OrganizationName": "AllianceHealth Medical Group Gynecology Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Michael C. Francis, M.D.", + "OrganizationName": "AllianceHealth Medical Group Internal Medicine Durant Campus", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Queen Creek Primary Care, P.C.", + "OrganizationName": "AllianceHealth Medical Group Neurosurgery Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - South Denver OB/GYN, PC", + "OrganizationName": "AllianceHealth Medical Group Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Mountain Top Internal Medicine", + "OrganizationName": "AllianceHealth Medical Group Orthopedics Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Jimmy Diaz MD, PC", + "OrganizationName": "AllianceHealth Medical Group Pediatrics Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Grassroots Gynecology LLC.", + "OrganizationName": "AllianceHealth Medical Group Pediatrics Durant Campus", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Smithtown Medical Specialists, PC", + "OrganizationName": "AllianceHealth Medical Group Primary Care Durant", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Complete Foot and Ankle Care of Nor", + "OrganizationName": "AllianceHealth Medical Group Primary Care in Thomas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Kishore G Pathial MD", + "OrganizationName": "AllianceHealth Medical Group QuickMed Durant", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Stanly Orthopaedic and Hand Surgery", + "OrganizationName": "AllianceHealth Medical Group Specialists – Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Rosemary Delgado MD", + "OrganizationName": "AllianceHealth Medical Group Specialists – Durant", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Patricia G Gao MD", + "OrganizationName": "AllianceHealth Medical Group Specialists – Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Seven Hills Women's Health PLLC.", + "OrganizationName": "AllianceHealth Medical Group Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Hillary Norton MD", + "OrganizationName": "AllianceHealth Medical Group Women’s Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - William Paull, MD", + "OrganizationName": "AllianceHealth Medical Group Women’s Health Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Panacea Brain and Spine Center, LLC", + "OrganizationName": "AllianceHealth Medical Group Women’s Health Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Olukunle Ajagbe MD INC", + "OrganizationName": "AllianceHealth Medical Group Wound Care and Hyperbarics Durant", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Boston Eye Care Consultants", + "OrganizationName": "AllianceHealth Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - South Mountain Cardiology LLC", + "OrganizationName": "AllianceHealth Urgent Care Ponca City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Lei S. Charlton MD PC", + "OrganizationName": "Family Medicine on 9th Street", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Neurology Center PLLC", + "OrganizationName": "QuickMed in Clinton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Lidia Zacharski NP Family Health PC", + "OrganizationName": "DC - Peter E Lavine MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Total Health Primary Care, PLLC", + "OrganizationName": "TN - Southern Sports Medicine and Orthop", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Primary Care North Kansas City", + "OrganizationName": "NC - Internal Medicine Associates, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Bharat K Mehta MD", + "OrganizationName": "IL - TIMC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - B H Pediatric Cardiology, PLLC", + "OrganizationName": "CT - Cardiology, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Brown County Women's Health LLC", + "OrganizationName": "MI - Womens Integrated Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Alicia S Kanhai DPM PA", + "OrganizationName": "RI - Childrens Healthcare Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Urban Podiatry LLC", + "OrganizationName": "MD - Menchavez Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Chico Heart Medical Clinic", + "OrganizationName": "CCWV Confidential", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Gutteridge JeanCharles, MD, PA", + "OrganizationName": "Community Care of West Virginia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Adair Allergy and Asthma Clinic, PA", + "OrganizationName": "AZ - SCOTT I. BOGGS P.L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - TOTALITY", + "OrganizationName": "NY - Richmond Hill Medical Services, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - LivingWell Primary Care", + "OrganizationName": "Mount Sinai Marathon Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Southern Neurology and Sleep", + "OrganizationName": "South Nassau PCs", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Comprehensive Podiatry LLC", + "OrganizationName": "TX - Fariba Pajoohi MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Pittsboro \u0026 Pine Ridge Urgent Care", + "OrganizationName": "NY - Beth Houck MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Nguyen", + "OrganizationName": "MO - ASSOCIATED SPECIALISTS IN MEDICINE,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northeast ProHealth", + "OrganizationName": "MO - The Womans Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Advantage Cardiology, INC.", + "OrganizationName": "AZ - Rheumatology \u0026 Arthritis Consultant", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Consultants in Neurology", + "OrganizationName": "TX - Pediatric Diagnostic Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Fort Myers Internal Medicine, LLC", + "OrganizationName": "TN - Urgent Care Of Erwin, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Heart Fit For Duty LLC", + "OrganizationName": "CO - CO Bariatric Surgery Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Essentia Health Mid Dakota", + "OrganizationName": "MA - Peter Masucci, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ID - Eastern Idaho Cardiology Associates", + "OrganizationName": "VA - Pediatrics at Oyster Point, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Arimah Medical Inc", + "OrganizationName": "AZ - AZ Heart Rhythm Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Larisse Lee MD PC", + "OrganizationName": "VA - Neuro Care of Virginia, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - School Health LINK, Inc.", + "OrganizationName": "CA - Ayala Medical Corporation, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Columbus Primary Care", + "OrganizationName": "NC - Northcross Health Maintenance", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Surgical Specialists of North Texas", + "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Carolina Forest", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Brookdale Hospital Medical Center", + "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Pawleys Island, SC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Heart and Vascular Institute", + "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Surfside Beach, SC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Martin's Point Health Care", + "OrganizationName": "South Strand Internists - Surfside Beach, SC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - NEW DERMATOLOGY GROUP", + "OrganizationName": "NY - Hal J Freiman, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Palm Beach Cardiology Center, Inc", + "OrganizationName": "TX - Directors Capital Ventures Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Doctors Memorial Hospital", + "OrganizationName": "GA - Performance Pediatrics \u0026 Sports Med", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mercy Physician Practice", + "OrganizationName": "OH - Catherine Laruffa MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Teche Regional Physician Practices", + "OrganizationName": "OH - Personal MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Hickory Medical Advisors, PC", + "OrganizationName": "CA - Rafatjoo Izabal \u0026 Snider MDs", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - CHS Internal Med of Tullahoma", + "OrganizationName": "NC - Harold S Samuel MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Medical Group- Tullahoma", + "OrganizationName": "Consultants in Epilepsy \u0026 Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Young County Family Clinic", + "OrganizationName": "Idaho Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Abdelnasser Elmansoury, MD PA", + "OrganizationName": "Movement Disorder Consultants PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - KPS Cardiovascular Surgery PA", + "OrganizationName": "AZ - Patricia E Gabriel DO \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Alpha J. Anders, MD, Inc", + "OrganizationName": "TN - Comprehensive Neurology Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - KETTERING PEDIATRIC \u0026 FAMILY CARE,", + "OrganizationName": "WV - Health thru Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Total Diagnostic \u0026 Int Pain, PC", + "OrganizationName": "NY - WomenCare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Kidney Care of Michiana, LLC", + "OrganizationName": "IL - McLean County Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - San Fernando Valley Neurologic", + "OrganizationName": "CT - Hartford Cardiac Laboratory, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Christopher J. Labban, D.O., P.C.", + "OrganizationName": "AL - Covington Bone \u0026 Joint, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - North Shore Pediatrics, Inc", + "OrganizationName": "MA - Raymond Paul-Blanc MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Tennessee Valley Pain Management", + "OrganizationName": "WV - Anthony A. McFarlane MD PC INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Neil H. Weisman", + "OrganizationName": "FL - Evenhuis Cardiology \u0026 Internal Med", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Easton Pulmonary \u0026 Critical Care PC", + "OrganizationName": "NC - Wilmington Internal Medicine PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lung Center Associates, PA", + "OrganizationName": "DENNIS M LEWIS, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Propicius Biosolutions, LLC", + "OrganizationName": "FRANK R WHEELER, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "D'ANDREA CARDIOVASCULAR CARE CENTER LLC", + "OrganizationName": "JAMES R WHITE, DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FAROOK K SHROFF", + "OrganizationName": "LANDER REGIONAL HOSPITALISTS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Amy G. Love, M.D.", + "OrganizationName": "RIVERTON PHYSICIAN PRACTICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - St Vincent de Paul Medical Clinic", + "OrganizationName": "WIND RIVER PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Trinity Primary Care, P.A.", + "OrganizationName": "WY - SCION - SageWest", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bluetail Medical Group", + "OrganizationName": "OK - Geetha B Kandimala, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - H. Allen Ferguson, Jr.", + "OrganizationName": "General Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Anees R Saleemi, MD PA", + "OrganizationName": "Occupational Medicine Office", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Pediatric Consultants West, PC", + "OrganizationName": "Urgent Care Office", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Fort Worth Personal Medicine", + "OrganizationName": "FL - North Beach Vascular \u0026 Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - David M. Herzog, MD, PC", + "OrganizationName": "MI - Steven A. Kushner DO P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Justin Paquette, M.D. Corporation", + "OrganizationName": "FL - Aviva Healthcare, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Karo Isagholian, M.D. INC.", + "OrganizationName": "FL - OptumCare Florida, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AHC", + "OrganizationName": "CA - Ibrahim Helmy, M.D., INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Ocean State Pediatrics", + "OrganizationName": "MD - Chesapeake Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Medomak Family Medicine, LLC", + "OrganizationName": "CA - Ventura Advanced Surgical Assoc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Epstein Neurosurgery Center, LLC", + "OrganizationName": "GA - Cooper Medical Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Total Body Pain Management", + "OrganizationName": "CO - Mount San Rafael Hospital Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Full Life Hormone Specialists, LLC", + "OrganizationName": "Chesapeake Regional Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MARINO CARDIOLOGY", + "OrganizationName": "Chesapeake Regional Breast Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Juan A Serrato MD PA", + "OrganizationName": "Chesapeake Regional Healthcare Departments", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Priti Patel, MD", + "OrganizationName": "Chesapeake Regional Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - David J Davin MD PLLC", + "OrganizationName": "Chesapeake Regional Medical Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - The Pain Center of Western WA", + "OrganizationName": "Chesapeake Regional Neurosciences-Neuro Endovascular Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - ABBINGH, LLC", + "OrganizationName": "Chesapeake Regional Neurosciences-Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Abrazo Health Care Physician Services", + "OrganizationName": "Chesapeake Regional Neurosciences-Neurosurgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carondelet Medical Group", + "OrganizationName": "Chesapeake Regional Neurosciences-Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - US NEURO Specialists PLLC", + "OrganizationName": "Chesapeake Regional Obstetrics and Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Dr. Avelino F. Millares M.D. P.A.", + "OrganizationName": "Chesapeake Regional Primary Care NC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Peninsula Orthopaedic Group PC", + "OrganizationName": "Chesapeake Regional Primary Care VA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Thoroughmed Health Care, LLC", + "OrganizationName": "Chesapeake Regional Primary Care-Currituck", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Maryland Eye Center", + "OrganizationName": "Chesapeake Regional Surgical Specialists-NC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Bellbrook Family Practice", + "OrganizationName": "Chesapeake Regional Surgical Specialists-VA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Angels Medical Care LLC", + "OrganizationName": "Chesapeake Regional Transitional Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - San Diego Advanced Surgery P.C.", + "OrganizationName": "Seaside Health Center at Atlantic Shores", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Johnson Pediatrics, PC", + "OrganizationName": "Z-Chesapeake Regional-DO NOT USE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southeast Texas Gastroenterology", + "OrganizationName": "Z-Chesapeake Regional-DO NOT USE-", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Endo Center", + "OrganizationName": "Z-Infectious Disease Consultants of Hampton Roads", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Rose Gynecology LLC", + "OrganizationName": "VA - Northern Virginia Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - University Family Medicine, PC", + "OrganizationName": "CA - Albany Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Manu P Vachhani MD", + "OrganizationName": "VA - Richard Joyce MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Prairie Fields Family Medicine, PC", + "OrganizationName": "All Florida Orthopaedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NH - NRHN Rehab Physician Services", + "OrganizationName": "Brandon Orthopedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Foot \u0026 Ankle Center of Washington", + "OrganizationName": "Florida Sports Orthopaedic and Spine Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Women's Choice LTD", + "OrganizationName": "Orthopaedic Associates of West Florida", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - AlphaDocs, LLC.", + "OrganizationName": "Orthopaedic Specialties of Tampa Bay", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Center for Women's Health", + "OrganizationName": "Tampa Bay Orthopaedic Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chesapeake Women's Care", + "OrganizationName": "NJ - David Alan Testa DO, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Complete Women's Care", + "OrganizationName": "GEORGIA HAND SHOULDER \u0026 ELBOW, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hampton Roads OB/GYN", + "OrganizationName": "GEORGIA SURGICAL CENTER ON PEACHTREE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mid-Atlantic Women's Care Imaging Centers", + "OrganizationName": "FL - Excellence Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Obstetrics and Gynecology Associates of Hampton", + "OrganizationName": "AZ - Paradise Valley Allergy Associates,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Group For Women", + "OrganizationName": "MA - Hines Dermatology Associates, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tidewater Physicians For Women", + "OrganizationName": "CT - Cloverleaf Family Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Totalcare for Women", + "OrganizationName": "LA - Baton Rouge Ear Nose \u0026 Throat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Virginia Beach Obstetrics and Gynecology", + "OrganizationName": "GA - Bainbridge Medical Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WOMEN'S EXECUTIVE HEALTHCARE", + "OrganizationName": "SC - West Ashley OB-GYN, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WomanCare Centers, PLC - PCN", + "OrganizationName": "MI - Rochester Hills Medical Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women Caring, PLC", + "OrganizationName": "GA - Tate Medical Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Havasu Women's Health Center PC", + "OrganizationName": "MO - Malik Neurological Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - South Ridge Family Clinic LLC", + "OrganizationName": "TX - Lori Hickson MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Joseph Ballaro, M.D., P.C.", + "OrganizationName": "WI - Northwoods Family Orthopaedics, S.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Jory J Goldberg MD PA", + "OrganizationName": "OH - Powell Pediatric Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Advanced Neuroscience Clinic, P.A.", + "OrganizationName": "TN - Center for Sports Med and Ortho", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Spine and Orthopedic Pain Center PC", + "OrganizationName": "WA - Queen Anne Medical Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Quality Healthcare Clinic, LLC", + "OrganizationName": "Family Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Bay Area Colorectal Surgical", + "OrganizationName": "NC - GirlTalk\u0026 Gynecology, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - EAST BAY NEPHROLOGY MEDICAL GROUP", + "OrganizationName": "MA - Chair City Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Beacon Primary Medicine Inc", + "OrganizationName": "Apex Health Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Orthopedic Center of Florida", + "OrganizationName": "Apex Health North Shore Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Germantown Private Psychiatry PLLC", + "OrganizationName": "Midlands Orthopaedics Surgery Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Romeo P. Papica II", + "OrganizationName": "Midlands Orthopaedics and Neurosurgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Camelback Women's Health", + "OrganizationName": "MA - Valley Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - J David Hurtado, MD", + "OrganizationName": "OH - Modern Psychiatry and Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Wards Corner Pediatrics INC", + "OrganizationName": "NY - Dr. Adeeti Gupta", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Northern Arizona ENT", + "OrganizationName": "WA - Elizabeth Cook, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Salil Trehan, MD", + "OrganizationName": "TX - Marshall S. Frumin, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - K\u0026S Healthcare", + "OrganizationName": "WA - Olympia Orthopaedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Dooley Chiropractic, LLC", + "OrganizationName": "OH - Gandhi GI LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Children's Health Assoc. Tidewater", + "OrganizationName": "OK - Kenan Kirkendall, DO PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Harmony Pediatrics, LLC", + "OrganizationName": "TN - Quality Medical Center of Union", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - AA OBGYN", + "OrganizationName": "ALL WOMEN'S HEALTH, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Comprehensive Pain and Spine Associ", + "OrganizationName": "ALLIANCE OBGYN GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gateway Medical Group", + "OrganizationName": "ARBOR OB/GYN WOMEN'S CARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Santa Rosa Family Practice", + "OrganizationName": "ATHENS WOMEN'S CLINIC, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Northwest Foot \u0026 Ankle, LLC.", + "OrganizationName": "BRIAN LEVITT, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Valentine Medical Center", + "OrganizationName": "CC020_KENNESAW GYNECOLOGY LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Behavioral Health", + "OrganizationName": "CC021_GEORGIA CENTER FOR FEMALE HEALTH II, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Valley Children's Hospital", + "OrganizationName": "CENTRAL UNIFIED OBSTETRICS AND GYN,LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Children's Hospital", + "OrganizationName": "CRABAPPLE GYNECOLOGY, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Valley Children's Sacramento Maternal Fetal Center", + "OrganizationName": "DELETE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Georgeta Varga M.D.", + "OrganizationName": "GA - Unified Women's Care of Georgia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Tillery, April", + "OrganizationName": "GENESIS WOMEN'S CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wilmington Physicians Group, LLC", + "OrganizationName": "GWINNETT'S PROGRESSIVE HEALTH CARE FOR WOMEN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Shoals Physician Practices", + "OrganizationName": "HAVEN OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Orthopaedics Northeast, P.C.", + "OrganizationName": "MT VERNON OB-GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopaedics Northeast, P.C.", + "OrganizationName": "NORTH GEORGIA OBSTETRICS \u0026 GYNECOLOGY LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ID - North Idaho Lung, Asthma and Criti", + "OrganizationName": "NORTHLAKE WOMEN'S CENTER, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Strand Orthopaedic Consultants", + "OrganizationName": "PRESTIGE HEALTHCARE OB/GYN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Bay City Cardiology.", + "OrganizationName": "RAYBON OBSTETRICS AND GYNECOLOGY ASSOCIATES, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Specialists in Women's Care, PC", + "OrganizationName": "UNIFIED PREMIER WOMEN'S CARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Janine K Jensen MD", + "OrganizationName": "WOMEN'S HEALTH ASSOCIATES GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Francisco G Rodriguez, DO", + "OrganizationName": "AZ - Flagstaff Primary Care, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - St Vincent Physician Services Inc.", + "OrganizationName": "Advanced Pain Centers, SC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "St. Vincent Physician Services, Inc.", + "OrganizationName": "Dupage Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RCHP-ECM Health Group, LLC", + "OrganizationName": "Elizabeth Pacocha DPM, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IA - LPNT Ottumwa Health Group, LLC", + "OrganizationName": "IL - Oak Brook Centre For Health, Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OTTUMWA HEALTH GROUP", + "OrganizationName": "Oak Brook Centre for Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - North Pittsburgh Pain Physicians", + "OrganizationName": "OR - Lake Oswego Family Physicians P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Parkwest Women's Specialists", + "OrganizationName": "WA - Lynn Albertson ARNP, PS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Susan Dodd", + "OrganizationName": "TN - East TN Regional OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Humboldt Park Health", + "OrganizationName": "GA - Mina Nayak M.D. P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Humboldt Park Health", + "OrganizationName": "GA - Kamlesh Nayak M.D. P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Family Planning of South Central NY", + "OrganizationName": "PA - Rehab Assocs of the Mainline", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Southwest Orthopaedic Group, P.A.", + "OrganizationName": "NC - Carolina Ear Nose and Throat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ID - Zoe Interventional Pain Management", + "OrganizationName": "NV - Southern Nevada Surgery Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Consulting Cardiologists, PC", + "OrganizationName": "MS - Avalon Medical, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Cardiac,Vascular \u0026Thoracic Surgeons", + "OrganizationName": "TX - Southeast Texas Cardiology Associat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Interventional Pain and Spine Speci", + "OrganizationName": "OK - DSK Medical Group, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - The Annapolis Hand Center, LLC", + "OrganizationName": "Midlothian Primary Care Doctors PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Clinic For Women's Health, PA", + "OrganizationName": "Pannaben H Nangha, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bay Area Orthopaedics \u0026 Sports Medicine", + "OrganizationName": "AZ - Sonoran Orthopaedic Trauma Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bay Area Physical Therapy LLC", + "OrganizationName": "MA - Healthy Solutions Primary Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Stone Oak Family Doctors PA", + "OrganizationName": "OR - Upper Hand Orthopaedics, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CAROLINA ORTHOPAEDIC SURGERY ASSOCIATES, P.A.", + "OrganizationName": "KS - Midwest Reproductive Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "THE CENTER FOR ORTHOPAEDIC SURGERY", + "OrganizationName": "TX - Dallas Ear, Nose \u0026 Throat Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Abraham Breast Clinic", + "OrganizationName": "OH - Barry J. Fish, M.D. LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Scottsdale Obstetrics \u0026 Gynecology,", + "OrganizationName": "Urology Group Of New Jersey", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Maria Cole FNP-BC, PC", + "OrganizationName": "VA - Dianne McNeill, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - GYNPLUS", + "OrganizationName": "OR - Injury Specialists of Oregon, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - GOH Medical, PA", + "OrganizationName": "CO - Federal Healthcare Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Chad Walters DO, LLC", + "OrganizationName": "NC - Albemarle Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Continuum Health Care, P.A.", + "OrganizationName": "LA - New Orleans Headache \u0026 Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Athena Medical Center for Women", + "OrganizationName": "GA - West Cobb Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - AMF Gastroenterology Inc", + "OrganizationName": "TX - Arbor Family Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - K2 Foot and Ankle PLLC", + "OrganizationName": "NC - Richard A. Dougherty, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Johnson Pediatrics", + "OrganizationName": "NC - French Broad Pediatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - All Women Midwifery and Healthcare", + "OrganizationName": "SC - Carolina Nephrology \u0026 Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - France Medical Center", + "OrganizationName": "MO - KANSAS CITY PEDIATRICS, L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - ElderDerm S.C.", + "OrganizationName": "The Valley Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Nephrology and Hyertension", + "OrganizationName": "Valley Employee Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - AZ PEDIATRIC PULMONARY \u0026 ASTHMA", + "OrganizationName": "Valley Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - ARDMORE FAMILY PRACTICE", + "OrganizationName": "Valley Medical Group Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Triad OB/GYN, PC", + "OrganizationName": "Valley Medical Group Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Sandhya Venugopal MD LLC", + "OrganizationName": "VA - Atlantic Obstetrics and Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "2-6381-3 M.A.U.A. MAIN OFFICE", + "OrganizationName": "GA - Haiba Sonyika MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "US ACUTE CARE SOLUTIONS", + "OrganizationName": "MA - Southeast Rheumatology \u0026 Immunology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alan Cohen, MD", + "OrganizationName": "OR - Sharon M. Lawrence, D.O.,LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Coastal Monmouth OB/GYN", + "OrganizationName": "OK - Westview Pediatric Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southern Monmouth OB/GYN", + "OrganizationName": "TX - Lindsay H. White, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "West Long Branch OB/GYN", + "OrganizationName": "TN - Kathleen O. Edmunds, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Womens Medical Connection", + "OrganizationName": "CA - Bay Area Osteopathic INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Women's Health Specialists- St. L", + "OrganizationName": "KY - Chary Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Tamrat Bekele, MD", + "OrganizationName": "FAIRFAX LOUDOUN OB-GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KDMC Physician Clinics", + "OrganizationName": "National Vascular Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lincoln Primary Care", + "OrganizationName": "IL - Hector L Salcedo, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Ankles \u0026 Feet Podiatry", + "OrganizationName": "OH - The Dermatology Group, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Center for Voice \u0026 Swallowing", + "OrganizationName": "ME - Penobscot Valley Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Soll Eye Associates", + "OrganizationName": "NJ - Prime Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Cheyenne Women's Clinic", + "OrganizationName": "IL - Ahearn \u0026 Associates Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Roman Erik Tavarez MD, PA", + "OrganizationName": "TX - Discovery Medical Network Matagorda", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Robert E Springer III MD PC", + "OrganizationName": "AL - Surgical Clinic St. Clair, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Columbus Medical Associates, P.A.", + "OrganizationName": "NY - Hudson Allergy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - LPNT - Master", + "OrganizationName": "CA - ORTHOPEDIC ASSOCIATES OF NORTHERN C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Heart and Vascular Specialists, P.C", + "OrganizationName": "NC - IPMLN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Spring Hill Family Medicine, P.A.", + "OrganizationName": "IL - Tibor C. Kopjas, MD S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "POTENTRX", + "OrganizationName": "ME - Maine Institute for Headache", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Potentrx 360", + "OrganizationName": "MS - Pain Management Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Speck Health", + "OrganizationName": "KS - AirCapitalCardiology, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Linhkieu T. Nguyen, MD, Inc.", + "OrganizationName": "MS - Sullivan Family Medicine Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Naugatuck Valley Women's Health", + "OrganizationName": "NJ - Women for Women Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Behavioral Health", + "OrganizationName": "ME - MARANACOOK FAMILY HEALTH CARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Main Communicator Group", + "OrganizationName": "FL - Kendall Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Planned Parenthood South Texas", + "OrganizationName": "CA - Ob-Gyn Assoc of the Central Coast", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Lakeshore Urology, PLC", + "OrganizationName": "AZ - Ghebru Woldemichael MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Advanced Nephrology Associates, PC", + "OrganizationName": "TX - Donna H. Canney, MD PhD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Greenbrier Clinic", + "OrganizationName": "ME - Dorothy M Thayer MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Judith A. Hinchey, MD, MS", + "OrganizationName": "TN - Dr. Martin's OB/GYN Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Southern Westchester OB/GYN Associa", + "OrganizationName": "MEMORIAL HEALTH WASHINGTON", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Pediatric Partners", + "OrganizationName": "LA - Michael C. Francis, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Erick Madrigal MD, MBA, Inc", + "OrganizationName": "AZ - Queen Creek Primary Care, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Mountain Medical Center", + "OrganizationName": "CO - South Denver OB/GYN, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Preventive Cardiology \u0026 Internal Me", + "OrganizationName": "PA - Mountain Top Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Lotus Med LLC", + "OrganizationName": "GA - Jimmy Diaz MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Levine Heart \u0026 Wellness", + "OrganizationName": "OR - Grassroots Gynecology LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Dr. Brian Levitt, LLC", + "OrganizationName": "NY - Smithtown Medical Specialists, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Premier Assoc - Healthcare of Women", + "OrganizationName": "TX - Complete Foot and Ankle Care of Nor", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Niti Bhalla Carlson, MD", + "OrganizationName": "OR - Kishore G Pathial MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Elaine C. Shoji, MD, FAAP", + "OrganizationName": "NC - Stanly Orthopaedic and Hand Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Peter J. Oliva, M.D", + "OrganizationName": "CA - Rosemary Delgado MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Tri-Star Pediatrics", + "OrganizationName": "MD - Patricia G Gao MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Youngs OB GYN", + "OrganizationName": "TX - Seven Hills Women's Health PLLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Washington Surgical Specialist, LLC", + "OrganizationName": "NM - Hillary Norton MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Michael V Elman MD PC", + "OrganizationName": "GA - William Paull, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Clearchoice Health Center, Inc", + "OrganizationName": "AZ - Panacea Brain and Spine Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Larry Tremper DO, PLLC DBA Pediatri", + "OrganizationName": "MS - Olukunle Ajagbe MD INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Regional Orthopaedics", + "OrganizationName": "MA - Boston Eye Care Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Integrated Pain \u0026 Neuroscience, LLC", + "OrganizationName": "AZ - South Mountain Cardiology LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Prasad R. Ancha, M.D.", + "OrganizationName": "VA - Lei S. Charlton MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - St. Boniface Haiti Foundation", + "OrganizationName": "NC - Carolina Neurology Center PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Alaska Childrens Heart Center LLC", + "OrganizationName": "NY - Lidia Zacharski NP Family Health PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Innovative Women's Healthcare", + "OrganizationName": "TX - Total Health Primary Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Women's Health Care Ctr of Chicago", + "OrganizationName": "MO - Primary Care North Kansas City", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - James River Spine \u0026 Joint", + "OrganizationName": "PA - Bharat K Mehta MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Prospira PainCare", + "OrganizationName": "NC - B H Pediatric Cardiology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Prospira - CA", + "OrganizationName": "OH - Brown County Women's Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Prospira - FL", + "OrganizationName": "FL - Alicia S Kanhai DPM PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Prospira - GA", + "OrganizationName": "OH - Urban Podiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Prospira - NJ", + "OrganizationName": "CA - Chico Heart Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Prospira - TX", + "OrganizationName": "FL - Gutteridge JeanCharles, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Prospira-MI", + "OrganizationName": "TX - Adair Allergy and Asthma Clinic, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Northwood Health Services, PC", + "OrganizationName": "OK - TOTALITY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Leo Dermatology, LLC", + "OrganizationName": "CT - LivingWell Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Michael Bader MD", + "OrganizationName": "AL - Southern Neurology and Sleep", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Gower Family Care Center, P.C.", + "OrganizationName": "OH - Comprehensive Podiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Advanced Care for Women, LLC", + "OrganizationName": "NC - Pittsboro \u0026 Pine Ridge Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Grand Mesa Nephrology, PLLC", + "OrganizationName": "Dr. Nguyen", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texan Cardiovasular Institute", + "OrganizationName": "Northeast ProHealth", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Heba Farag MD, Inc", + "OrganizationName": "OH - Advantage Cardiology, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Moore Healthcare Group", + "OrganizationName": "KS - Consultants in Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Steven V Kozmary MD LLC", + "OrganizationName": "FL - Fort Myers Internal Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NEW ENGLAND EAR, NOSE \u0026 THROAT/FACIAL PLASTIC SURGERY, P.C.", + "OrganizationName": "AZ - Heart Fit For Duty LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Kadie E. Leach MD", + "OrganizationName": "Essentia Health Mid Dakota", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Marin Family Medicine, PA", + "OrganizationName": "ID - Eastern Idaho Cardiology Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Little S Clinic, LLC", + "OrganizationName": "GA - Arimah Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MT - Byron David Baldridge MD", + "OrganizationName": "CA - Larisse Lee MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - George J. Pereira MD", + "OrganizationName": "IL - School Health LINK, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - OMNI DERMATOLOGY, INC", + "OrganizationName": "GA - Columbus Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Legacy Cannon Family Health", + "OrganizationName": "TX - Surgical Specialists of North Texas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Life's Journey OBGYN, PC", + "OrganizationName": "NY - Brookdale Hospital Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Brammer", + "OrganizationName": "MI - Heart and Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Brunson", + "OrganizationName": "Martin's Point Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Seaside OB/GYN of Milford", + "OrganizationName": "WI - NEW DERMATOLOGY GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Richmond Foot and Ankle, LLC", + "OrganizationName": "FL - Palm Beach Cardiology Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - H. Elena Rodriguez, MD, Inc.", + "OrganizationName": "FL - Doctors Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Elmwood Village Primary Care", + "OrganizationName": "Mercy Physician Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Just Heart Cardiovascular Group Inc", + "OrganizationName": "Teche Regional Physician Practices", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Diabetes \u0026 Endocrinology of Denver,", + "OrganizationName": "TN - Hickory Medical Advisors, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NH - RicherWellnessMD, PLLC", + "OrganizationName": "TX - Young County Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Douglas Gill MD, SC", + "OrganizationName": "FL - Abdelnasser Elmansoury, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Parkside Internal Medicine, PLLC", + "OrganizationName": "TX - KPS Cardiovascular Surgery PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Laura Fernandez-Ortiz M.D. P.A.", + "OrganizationName": "CA - Alpha J. Anders, MD, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - North Grove Internal Medicine, S.C.", + "OrganizationName": "OH - KETTERING PEDIATRIC \u0026 FAMILY CARE,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Park Ridge Pain Specialists", + "OrganizationName": "GA - Total Diagnostic \u0026 Int Pain, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Alliance OB/GYN Specialists PLLC", + "OrganizationName": "IN - Kidney Care of Michiana, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Orangeburg Medical Associates", + "OrganizationName": "CA - San Fernando Valley Neurologic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tiesenga Surgical Associates", + "OrganizationName": "AZ - Christopher J. Labban, D.O., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Anant Patel MD PA", + "OrganizationName": "VA - North Shore Pediatrics, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - West Cecil Health Center", + "OrganizationName": "TN - Tennessee Valley Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - South Jersey Pain Institute, P.C.", + "OrganizationName": "FL - Neil H. Weisman", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Crescent City Headache and Neurolog", + "OrganizationName": "PA - Easton Pulmonary \u0026 Critical Care PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Southwest Foot and Ankle Associates", + "OrganizationName": "TX - Lung Center Associates, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CARDIOLOGY CONSULTANTS", + "OrganizationName": "CT - Propicius Biosolutions, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "General Surgery Practice", + "OrganizationName": "D'ANDREA CARDIOVASCULAR CARE CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "General Surgery of Lancaster", + "OrganizationName": "FAROOK K SHROFF", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lancaster Medical Group", + "OrganizationName": "NJ - Amy G. Love, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - CHS Lancaster Medical Group", + "OrganizationName": "AZ - St Vincent de Paul Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Pendleton Community Care, Inc.", + "OrganizationName": "TX - Trinity Primary Care, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Ridge Family Physicians", + "OrganizationName": "Bluetail Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Joseph S. Thomas, MD", + "OrganizationName": "OH - H. Allen Ferguson, Jr.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Chicago Institute of Adv Surgery", + "OrganizationName": "TX - Anees R Saleemi, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Pandit Foot \u0026 Ankle Clinic", + "OrganizationName": "TN - Pediatric Consultants West, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Spring OB/GYN", + "OrganizationName": "TX - Fort Worth Personal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Shine Integrative Physical Therapy", + "OrganizationName": "NY - David M. Herzog, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Mayura Madani, M.D., P.L.L.C.", + "OrganizationName": "CA - Justin Paquette, M.D. Corporation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - St. Jude Medical Group, LLC", + "OrganizationName": "CA - Karo Isagholian, M.D. INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Wayne G Stanley MD", + "OrganizationName": "AHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Center for Foot and Ankle Care, PC", + "OrganizationName": "RI - Ocean State Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - REGINA L. EDMOND, M.D., INC.", + "OrganizationName": "ME - Medomak Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Rural Health Clinics of West TN", + "OrganizationName": "CO - Epstein Neurosurgery Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Advanced Brain and Spine, LLC", + "OrganizationName": "PA - Total Body Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Agarwal Nephrology \u0026 Hypertension", + "OrganizationName": "AL - Full Life Hormone Specialists, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Rappahannock Gastroenterology Assoc", + "OrganizationName": "MARINO CARDIOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - River Place OB/GYN PA", + "OrganizationName": "TX - Juan A Serrato MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Artemis OBGYN LLC", + "OrganizationName": "MA - Priti Patel, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Briarpatch Pediatrics", + "OrganizationName": "NY - David J Davin MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - The Institute Foot \u0026 Ankle P.A.", + "OrganizationName": "WA - The Pain Center of Western WA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Albracht Orthopedic Surgery", + "OrganizationName": "GA - ABBINGH, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Michael P. Brousseau, M.D., INC.", + "OrganizationName": "Abrazo Health Care Physician Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Homewood Flossmoor Medical Associat", + "OrganizationName": "Carondelet Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bon Secours Inactive", + "OrganizationName": "TX - US NEURO Specialists PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southside Physician Network", + "OrganizationName": "FL - Dr. Avelino F. Millares M.D. P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Bon Secours- Virginia Health Source", + "OrganizationName": "VA - Peninsula Orthopaedic Group PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Fountain Medical Associates, PC", + "OrganizationName": "WV - Thoroughmed Health Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - 411 Pediatrics", + "OrganizationName": "MD - Maryland Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Comprehensive Pain Solutions", + "OrganizationName": "OH - Bellbrook Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Heartland Health Care Clinic", + "OrganizationName": "MD - Angels Medical Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mark Garza, MD, PLLC", + "OrganizationName": "CA - San Diego Advanced Surgery P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southwest Sports and Spine Center", + "OrganizationName": "MO - Johnson Pediatrics, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Good Samaritan Health Center", + "OrganizationName": "Southeast Texas Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SONI FAMILY PRACTICE PLLC", + "OrganizationName": "The Endo Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Doctors Center | NeighborMD", + "OrganizationName": "OH - Rose Gynecology LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Digestive Disease Center of NJ, LLC", + "OrganizationName": "CO - University Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Boston O\u0026P", + "OrganizationName": "PA - Manu P Vachhani MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - BOSTON BRACE", + "OrganizationName": "NE - Prairie Fields Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Abdow Friendship Pediatrics P.C.", + "OrganizationName": "NH - NRHN Rehab Physician Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Care and Comfort OB/GYN", + "OrganizationName": "Foot \u0026 Ankle Center of Washington", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Podiatry Associates", + "OrganizationName": "IL - Women's Choice LTD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Breckenridge Medical Center RHC", + "OrganizationName": "FL - AlphaDocs, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Summit Headache and Neurologic Inst", + "OrganizationName": "Center for Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Robert C. Keeley MD", + "OrganizationName": "Chesapeake Women's Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - New Dawn Midwifery", + "OrganizationName": "Complete Women's Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chicago Health Medical Group", + "OrganizationName": "Hampton Roads OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MacNeal Hospital", + "OrganizationName": "Mid-Atlantic Women's Care Imaging Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Weiss Memorial Hospital", + "OrganizationName": "Obstetrics and Gynecology Associates of Hampton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "West Suburban Medical Center", + "OrganizationName": "The Group For Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Westlake Hospital", + "OrganizationName": "Tidewater Physicians For Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Women's Health and Wellness, LLC", + "OrganizationName": "Totalcare for Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Douglas Anders DO", + "OrganizationName": "Virginia Beach Obstetrics and Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Yu Yao, MD, A Professional Corp.", + "OrganizationName": "WOMEN'S EXECUTIVE HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Beebe Medical Group", + "OrganizationName": "WomanCare Centers, PLC - PCN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Beebe School Based Wellness", + "OrganizationName": "Women Caring, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - Beebe Physician Network, Inc", + "OrganizationName": "AZ - Havasu Women's Health Center PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Associates in Primary Care Medicine", + "OrganizationName": "MS - South Ridge Family Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LAKEFRONT MEDICAL ASSOCIATES LLC", + "OrganizationName": "NJ - Joseph Ballaro, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WEISS PHYSICIANS GROUP", + "OrganizationName": "NJ - Jory J Goldberg MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Carousel Pediatrics APMC", + "OrganizationName": "TX - Advanced Neuroscience Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Adult \u0026 Child Foot \u0026 Ankle Care, LL", + "OrganizationName": "VA - Spine and Orthopedic Pain Center PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Justin T. Johnson Inc.", + "OrganizationName": "NE - Quality Healthcare Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Pain Alternatives, Inc.", + "OrganizationName": "TX - Bay Area Colorectal Surgical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Atlanta Breast Care, PC", + "OrganizationName": "CA - EAST BAY NEPHROLOGY MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - Community Foot and Ankle Clinic", + "OrganizationName": "MA - Beacon Primary Medicine Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Complete Women's Care, P.C.", + "OrganizationName": "FL - Orthopedic Center of Florida", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Face to Face, PLLC", + "OrganizationName": "TN - Germantown Private Psychiatry PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - HRC Medical Associates, P.C.", + "OrganizationName": "TX - Romeo P. Papica II", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Olentangy Pediatrics", + "OrganizationName": "AZ - Camelback Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Surgical Associates of Western Colo", + "OrganizationName": "AZ - J David Hurtado, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Bellevue Podiatric Physicians", + "OrganizationName": "VA - Wards Corner Pediatrics INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - GILLUM FACIAL PLASTIC SURGERY, P.C.", + "OrganizationName": "AZ - Northern Arizona ENT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Dahlia T. Carr M.C. Inc.", + "OrganizationName": "TX - Salil Trehan, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Center for Colon and Rectal Health", + "OrganizationName": "TX - K\u0026S Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Providence Pediatrics", + "OrganizationName": "OH - Dooley Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Lester R Schwartz MD", + "OrganizationName": "VA - Children's Health Assoc. Tidewater", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Wilson Medical Center", + "OrganizationName": "GA - Harmony Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Ocean Psychiatric Group", + "OrganizationName": "TX - AA OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - New Hope Family Medicine P.A.", + "OrganizationName": "NC - Comprehensive Pain and Spine Associ", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Wellcare Medical, LLC", + "OrganizationName": "Gateway Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Lumen Cardiovascular Specialists", + "OrganizationName": "TX - Santa Rosa Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - Lewes Family Practice, PA", + "OrganizationName": "OH - Northwest Foot \u0026 Ankle, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Gulf Coast Pediatrics", + "OrganizationName": "LA - Valentine Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Virginia Pediatrics, PC", + "OrganizationName": "Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Perrysburg Family Physicians", + "OrganizationName": "CA - Valley Children's Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Bumps N' Bruises Pediatric Urgent C", + "OrganizationName": "Valley Children's Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - CYNTHIA N. SCHAEFFER, M.D., P.A", + "OrganizationName": "Valley Children's Sacramento Maternal Fetal Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sarasa Kumar MD, Inc.", + "OrganizationName": "TX - Georgeta Varga M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Family Med Associates of Dalton, PC", + "OrganizationName": "KY - Tillery, April", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Harvard Family Physicians,P.C.", + "OrganizationName": "Wilmington Physicians Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - BERNARDSVILLE PEDIATRICS LLC", + "OrganizationName": "Shoals Physician Practices", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Charlotte Metro Hyperbarics", + "OrganizationName": "MA - Orthopaedics Northeast, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Virginia Beach Premier Medical, PC", + "OrganizationName": "Orthopaedics Northeast, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - SmartStart Pediatrics, LLC", + "OrganizationName": "ID - North Idaho Lung, Asthma and Criti", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - DANIEL V. VIJJESWARAPU, MD", + "OrganizationName": "SC - Strand Orthopaedic Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Timothy C. Dindoffer, MD PC", + "OrganizationName": "TX - Bay City Cardiology.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Brian S. Love, M.D. Inc.", + "OrganizationName": "CO - Specialists in Women's Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - The Surgical Clinic of Central AR", + "OrganizationName": "CA - Janine K Jensen MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - CHRISTUS Southern New Mexico", + "OrganizationName": "CA - Francisco G Rodriguez, DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Exceed Health Clinic", + "OrganizationName": "MA - St Vincent Physician Services Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Jon W. Ahlstrom M.D. PC", + "OrganizationName": "St. Vincent Physician Services, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - North Wake Pediatrics", + "OrganizationName": "RCHP-ECM Health Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Karoline Woitke, PA", + "OrganizationName": "IA - LPNT Ottumwa Health Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Gregory Hudson MD, Inc.", + "OrganizationName": "OTTUMWA HEALTH GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Drs. KATZ \u0026 KADE", + "OrganizationName": "PA - North Pittsburgh Pain Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PHYSICIANS WOMEN'S SERVICES", + "OrganizationName": "Parkwest Women's Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Alumbra Women's Health/Maternity", + "OrganizationName": "Susan Dodd", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Marius Killian N DiTursi MD PC", + "OrganizationName": "Humboldt Park Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dr. Bart Pruitt Family Practice", + "OrganizationName": "IL - Humboldt Park Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Oregon Coast Podiatry", + "OrganizationName": "NY - Family Planning of South Central NY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Lisa E. Mark MD, LLC", + "OrganizationName": "TX - Southwest Orthopaedic Group, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Healthquarters, Inc.", + "OrganizationName": "ID - Zoe Interventional Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Women's Specialty Health Ctrs, PC", + "OrganizationName": "Consulting Cardiologists, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Epic Medical Group", + "OrganizationName": "OH - Cardiac,Vascular \u0026Thoracic Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - A Kid's Place, LLC", + "OrganizationName": "VA - Interventional Pain and Spine Speci", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Long Pond Pediatrics", + "OrganizationName": "MD - The Annapolis Hand Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Shepherds' Place Clinic LLC", + "OrganizationName": "TX - Clinic For Women's Health, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Morris County Primary Care, LLC", + "OrganizationName": "Bay Area Orthopaedics \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Orthopedics", + "OrganizationName": "Bay Area Physical Therapy LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Prime Health Medical Clinic, PA", + "OrganizationName": "TX - Stone Oak Family Doctors PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Rafiq Saljuki M.D. LLC", + "OrganizationName": "CAROLINA ORTHOPAEDIC SURGERY ASSOCIATES, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Port Orange Gynecology LLC", + "OrganizationName": "THE CENTER FOR ORTHOPAEDIC SURGERY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bon Secours- Hampton Roads- Inactive", + "OrganizationName": "AR - Abraham Breast Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Franklin Clinic Corp", + "OrganizationName": "AZ - Scottsdale Obstetrics \u0026 Gynecology,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Bon Secours- Hampton Roads", + "OrganizationName": "TX - Maria Cole FNP-BC, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Kavitha Moolamalla MD, PA", + "OrganizationName": "TN - GYNPLUS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - The Foot \u0026 Ankle Care Center, P.A.", + "OrganizationName": "TX - GOH Medical, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - John Brent, MD", + "OrganizationName": "KY - Chad Walters DO, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - AAI Health Services", + "OrganizationName": "FL - Continuum Health Care, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Manish Dimri, MD PA", + "OrganizationName": "CA - Athena Medical Center for Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Ensign Medical, Inc.", + "OrganizationName": "AZ - AMF Gastroenterology Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Vo Medical Clinic, P.C.", + "OrganizationName": "UT - K2 Foot and Ankle PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BADM Main St", + "OrganizationName": "IL - Johnson Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Tejas Patel, M.D. Corporation", + "OrganizationName": "FL - All Women Midwifery and Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHS Centre Clinic Corp", + "OrganizationName": "NC - France Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Reservoir Family Medical Clinic, PA", + "OrganizationName": "IL - ElderDerm S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Riviera Allergy Medical Center", + "OrganizationName": "Nephrology and Hyertension", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SGMC Valdosta Medical Clinic", + "OrganizationName": "AZ - AZ PEDIATRIC PULMONARY \u0026 ASTHMA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Georgia Medical Center", + "OrganizationName": "NC - ARDMORE FAMILY PRACTICE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Revitalize", + "OrganizationName": "MA - Triad OB/GYN, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Dragos L. Popescu MD", + "OrganizationName": "AZ - Sandhya Venugopal MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Virginia Endocrinology", + "OrganizationName": "2-6381-3 M.A.U.A. MAIN OFFICE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Integrative Family Medicine", + "OrganizationName": "US ACUTE CARE SOLUTIONS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Liberty Pediatrics, P.L.L.C", + "OrganizationName": "Alan Cohen, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Annandale Foot and Ankle Center", + "OrganizationName": "Coastal Monmouth OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - SHELBY PEDIATRIC ASSOC. \u0026 LUNG Ctr.", + "OrganizationName": "Southern Monmouth OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Duviel Irizarry LLC", + "OrganizationName": "West Long Branch OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Lisa Beth Speck, MD PC", + "OrganizationName": "Womens Medical Connection", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Mapleton Medical Center, Inc.", + "OrganizationName": "MO - Women's Health Specialists- St. L", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Preferred Women's Healthcare, LLC", + "OrganizationName": "PA - Tamrat Bekele, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - MATTHEW H. KOPERA, M.D., PLC", + "OrganizationName": "KDMC Physician Clinics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Pediatric Associates of Morris LLC", + "OrganizationName": "Lincoln Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - The Urology Center PC", + "OrganizationName": "AL - Ankles \u0026 Feet Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Kingman County Health Department", + "OrganizationName": "CO - Center for Voice \u0026 Swallowing", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Ohio Advanced Healthcare LLC", + "OrganizationName": "PA - Soll Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Ridgefield Family Medicine PLLC", + "OrganizationName": "WY - Cheyenne Women's Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Womens Clinic of Northern Arizona", + "OrganizationName": "TX - Roman Erik Tavarez MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Dr. Bill O'Brien, LLC", + "OrganizationName": "GA - Robert E Springer III MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - North Bergen Family Medicine, LLC", + "OrganizationName": "NC - Columbus Medical Associates, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Mark R. Hollemon, D.O., LLC", + "OrganizationName": "TN - LPNT - Master", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Trenton Orthopaedic Group, PA", + "OrganizationName": "VA - Heart and Vascular Specialists, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - New Path MD Inc", + "OrganizationName": "KS - Spring Hill Family Medicine, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Miami Orthopedics \u0026 Sports Medicine", + "OrganizationName": "POTENTRX", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Perrigin Medical, PLLC", + "OrganizationName": "Potentrx 360", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Woodstock Pediatrics P.C.", + "OrganizationName": "Speck Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Lander Women's Care LLC", + "OrganizationName": "CA - Linhkieu T. Nguyen, MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TRIAD PRIMARY CARE", + "OrganizationName": "CT - Naugatuck Valley Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Dr. Paul's Family \u0026 Urgent Care", + "OrganizationName": "Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - South Routt Medical Center", + "OrganizationName": "Main Communicator Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Spine and Orthopedic Center of NM", + "OrganizationName": "Planned Parenthood South Texas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ARDC", + "OrganizationName": "MI - Lakeshore Urology, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ortho", + "OrganizationName": "PA - Advanced Nephrology Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sports Medicine", + "OrganizationName": "The Greenbrier Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Urgent Care", + "OrganizationName": "MA - Judith A. Hinchey, MD, MS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Life In a Blender, LLC", + "OrganizationName": "NY - Southern Westchester OB/GYN Associa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Pain Center, P.C.", + "OrganizationName": "CA - Pediatric Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Litchfield Hills Family Medicine", + "OrganizationName": "CA - Erick Madrigal MD, MBA, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Lois A. Nelson, MD, LLC", + "OrganizationName": "CO - Mountain Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Grapevine Women's Health and GYN", + "OrganizationName": "FL - Preventive Cardiology \u0026 Internal Me", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Karen LaFace MD PLLC", + "OrganizationName": "MA - Lotus Med LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Sunflower Primary/Prompt Care, LLC", + "OrganizationName": "FL - Levine Heart \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Coastal Urgent Care of Louisiana", + "OrganizationName": "GA - Dr. Brian Levitt, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Total Health Care", + "OrganizationName": "FL - Premier Assoc - Healthcare of Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Orthopedic Assc Northern Berkshire", + "OrganizationName": "GA - Niti Bhalla Carlson, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Medical Center West", + "OrganizationName": "CA - Elaine C. Shoji, MD, FAAP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Ohio Vein \u0026 Vascular, Inc", + "OrganizationName": "NY - Peter J. Oliva, M.D", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Diabetes and Endocrine Treatment Ce", + "OrganizationName": "NV - Tri-Star Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Pedro Ylisastigui MD PA", + "OrganizationName": "CA - Youngs OB GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "David Hong DO", + "OrganizationName": "MD - Washington Surgical Specialist, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sanjay Jobanputra MD", + "OrganizationName": "MA - Michael V Elman MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SP Docs(Dr.s Hackett, Schmidlein \u0026 Ginsburg)", + "OrganizationName": "TX - Clearchoice Health Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Emkey Arthritis \u0026 Osteoporosis Clin", + "OrganizationName": "TX - Larry Tremper DO, PLLC DBA Pediatri", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Cabin Creek Health Systems", + "OrganizationName": "NC - Carolina Regional Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Davenport Medical Clinic", + "OrganizationName": "LA - Integrated Pain \u0026 Neuroscience, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Integrative Advantage LLC", + "OrganizationName": "PA - Prasad R. Ancha, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Family Care of Fredericksburg, PLC", + "OrganizationName": "MA - St. Boniface Haiti Foundation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Valley Health Care", + "OrganizationName": "AK - Alaska Childrens Heart Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - East Lake Medical Clinic", + "OrganizationName": "GA - Innovative Women's Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Milan C. Patel, MD, INC", + "OrganizationName": "IL - Women's Health Care Ctr of Chicago", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - SupraCare Family Health PLLC", + "OrganizationName": "VA - James River Spine \u0026 Joint", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Surgical Care of the Virginias, LLC", + "OrganizationName": "CA - Prospira PainCare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Regis Community Health Services", + "OrganizationName": "Prospira - CA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - West Virginia Heart Vasculr Ins", + "OrganizationName": "Prospira - FL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Dr. Adnan Elamine, MD", + "OrganizationName": "Prospira - GA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Advanced Medicine, Inc.", + "OrganizationName": "Prospira - NJ", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Fore Family Practice", + "OrganizationName": "Prospira - TX", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dalton Ear, Nose \u0026 Throat", + "OrganizationName": "Prospira-MI", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Dalton ENT Associates, P.C.", + "OrganizationName": "PA - Northwood Health Services, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NW GA Surgery Center", + "OrganizationName": "OH - Leo Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - William E Smith OBGYN", + "OrganizationName": "MA - Michael Bader MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Rhoda Pomerantz, MD", + "OrganizationName": "MO - Gower Family Care Center, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Oakhurst Pediatrics, LLC", + "OrganizationName": "VA - Advanced Care for Women, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Desert Podiatric Med Specialists", + "OrganizationName": "CO - Grand Mesa Nephrology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Andrews Neuropsychology Consulting", + "OrganizationName": "TX - Texan Cardiovasular Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Sanjay Misra, MD", + "OrganizationName": "CA - Heba Farag MD, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Hightower Dermatology Services, LLC", + "OrganizationName": "LA - Moore Healthcare Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Breast Care Specialists, PC", + "OrganizationName": "OH - Steven V Kozmary MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Sophia Leonida, MD, PC", + "OrganizationName": "NEW ENGLAND EAR, NOSE \u0026 THROAT/FACIAL PLASTIC SURGERY, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Family Medicine Associates of SA", + "OrganizationName": "MD - Kadie E. Leach MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Health Centers of Baltimore", + "OrganizationName": "TX - Marin Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Fisher Cardiology and Electrophysio", + "OrganizationName": "UT - Little S Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Colon Rectal Surgery Associates", + "OrganizationName": "MT - Byron David Baldridge MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Coastal Health Partners", + "OrganizationName": "MA - George J. Pereira MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pajaro Valley Health Care District", + "OrganizationName": "AZ - OMNI DERMATOLOGY, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Mid-Atlantic Epilepsy \u0026 Sleep Ctr", + "OrganizationName": "NC - Legacy Cannon Family Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Edouard Coupet MD", + "OrganizationName": "PA - Life's Journey OBGYN, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Totowa Pediatrics Group PA", + "OrganizationName": "Dr. Brammer", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Remedy Internal Medicine \u0026 Wellness", + "OrganizationName": "Dr. Brunson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - FamilyCare HealthCenter", + "OrganizationName": "Seaside OB/GYN of Milford", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Rocky Hill Pediatrics, LLC", + "OrganizationName": "OH - Richmond Foot and Ankle, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Natchez Women's Center, LLC", + "OrganizationName": "CA - H. Elena Rodriguez, MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Katahdin Valley Health Center", + "OrganizationName": "NY - Elmwood Village Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Katahdin Valley Health Center (FP, no portal use)", + "OrganizationName": "MD - Just Heart Cardiovascular Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Pulmonary and CC Medicine", + "OrganizationName": "CO - Diabetes \u0026 Endocrinology of Denver,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Emerson C Walden MD", + "OrganizationName": "NH - RicherWellnessMD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lowcountry Orthopaedics", + "OrganizationName": "IL - Douglas Gill MD, SC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Midlands Orthopaedics \u0026 Neurosurgery", + "OrganizationName": "TN - Parkside Internal Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Signe Spine \u0026 Rehab", + "OrganizationName": "FL - Laura Fernandez-Ortiz M.D. P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Winning Health", + "OrganizationName": "IL - North Grove Internal Medicine, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Women's Physicians", + "OrganizationName": "IL - Park Ridge Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Canton Pediatrics", + "OrganizationName": "TX - Alliance OB/GYN Specialists PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Shrewsbury OB/GYN", + "OrganizationName": "SC - Orangeburg Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Discovery Medical Network Henrietta", + "OrganizationName": "Tiesenga Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Advanced Medicine + Pediatrics, LLC", + "OrganizationName": "TX - Anant Patel MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Nettesheim Family Footcare, PC", + "OrganizationName": "MD - West Cecil Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - University Medical Care, Inc.", + "OrganizationName": "NJ - South Jersey Pain Institute, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Catalin Marinescu MD, Inc.", + "OrganizationName": "LA - Crescent City Headache and Neurolog", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Arkansas Orthopedic Surgery and Wel", + "OrganizationName": "OH - Southwest Foot and Ankle Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Patricia A Farmer APRN CNP PLLC", + "OrganizationName": "WV - Pendleton Community Care, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Healthservicesone, P.C.", + "OrganizationName": "IL - Ridge Family Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Sang H. Lee, D.O., P.C.", + "OrganizationName": "IL - Joseph S. Thomas, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Mill Creek Family Practice", + "OrganizationName": "IL - Chicago Institute of Adv Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - MEDICAL ASSOCIATES OF NWI LLC", + "OrganizationName": "IL - Pandit Foot \u0026 Ankle Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Gainesville Heart \u0026 Vascular Group", + "OrganizationName": "NY - Spring OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Carolina Urgent \u0026 Family Care", + "OrganizationName": "OR - Shine Integrative Physical Therapy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Patricia Kavanagh, MD", + "OrganizationName": "MI - Mayura Madani, M.D., P.L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Nephrology Specialists Medical Grp", + "OrganizationName": "LA - St. Jude Medical Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - David Nicholson D.O., LLC.", + "OrganizationName": "AL - Wayne G Stanley MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Allied Pediatrics, PLLC", + "OrganizationName": "VA - Center for Foot and Ankle Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Willow Family Medicine, LLC", + "OrganizationName": "CA - REGINA L. EDMOND, M.D., INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Affiliated Podiatrists, Inc.", + "OrganizationName": "TN - Rural Health Clinics of West TN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "McPherson Medical \u0026 Diagnostic", + "OrganizationName": "CO - Advanced Brain and Spine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Steele Family Rural Health Clinic", + "OrganizationName": "GA - Agarwal Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Brooklyn Midwifery \u0026 Medical Group", + "OrganizationName": "VA - Rappahannock Gastroenterology Assoc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Laura E Baber MD, LLC", + "OrganizationName": "TX - River Place OB/GYN PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Marilyn W. Horacek, D.O.", + "OrganizationName": "NJ - Artemis OBGYN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Shete Ear Nose Throat Clinic", + "OrganizationName": "MA - Briarpatch Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Ohana Cardiology", + "OrganizationName": "TX - The Institute Foot \u0026 Ankle P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Florida Vein Care Specialists, LLC", + "OrganizationName": "TX - Albracht Orthopedic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Arundel Pediatrics, PA", + "OrganizationName": "CA - Michael P. Brousseau, M.D., INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lady of the Sea General Hospital", + "OrganizationName": "IL - Homewood Flossmoor Medical Associat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lady of the Sea General Surgery Clinic", + "OrganizationName": "Bon Secours Inactive", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lady of the Sea Medical Clinic - Cut Off", + "OrganizationName": "Southside Physician Network", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lady of the Sea Medical Clinic - Larose", + "OrganizationName": "VA - Bon Secours- Virginia Health Source", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - ESTRELLA EAR, NOSE AND THROAT, P.C.", + "OrganizationName": "PA - Fountain Medical Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Lisa Giudice, MD", + "OrganizationName": "TX - 411 Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - PEDIATRIC CARE ASSOCIATES, P.C.", + "OrganizationName": "Comprehensive Pain Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Boston Sports and Shoulder Center", + "OrganizationName": "Heartland Health Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family First Health", + "OrganizationName": "Mark Garza, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Nephrology Center of Maryland", + "OrganizationName": "Southwest Sports and Spine Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Melvin S Gale MD and Associates", + "OrganizationName": "GA - Good Samaritan Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Prettelt Center for Family Health", + "OrganizationName": "SONI FAMILY PRACTICE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Clarksville Medical Group", + "OrganizationName": "The Doctors Center | NeighborMD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Blue Ridge Speech \u0026 Hearing Center", + "OrganizationName": "NJ - Digestive Disease Center of NJ, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Delta Surgical Associates", + "OrganizationName": "Boston O\u0026P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Rockwall Neurology", + "OrganizationName": "MA - BOSTON BRACE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - CARDIOVASCULAR SPECIALISTS OF SOUTH", + "OrganizationName": "MD - Abdow Friendship Pediatrics P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Night and Day Pediatrics, LLC", + "OrganizationName": "LA - Care and Comfort OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Desert Sky Spine \u0026 Sports Medicine", + "OrganizationName": "Podiatry Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Preferred Spine and Pain, PLLC", + "OrganizationName": "TX - Breckenridge Medical Center RHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - ALAN D. JENSEN, M.D., P.C.", + "OrganizationName": "CO - Summit Headache and Neurologic Inst", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Mary V. Mirto, DO", + "OrganizationName": "VA - Robert C. Keeley MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Nancy A. Brown, DO, PC", + "OrganizationName": "NC - New Dawn Midwifery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Excel Cardiac Care", + "OrganizationName": "Chicago Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - CareFirst Medical Group, Inc.", + "OrganizationName": "MacNeal Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Amory Urgent Care", + "OrganizationName": "Weiss Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Morris E. McCray DO", + "OrganizationName": "West Suburban Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Magnolia Pediatrics Group, LLC", + "OrganizationName": "Westlake Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Women's Healthcare of Princeton, L.", + "OrganizationName": "OR - Women's Health and Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Pediatric \u0026 Preventive Medicine", + "OrganizationName": "CA - Douglas Anders DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Richard G Valenzuela, M.D., P.A.", + "OrganizationName": "CA - Yu Yao, MD, A Professional Corp.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - JOYDIP BHATTACHARYA, D.O. MEDICAL", + "OrganizationName": "Beebe Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Riverside Medical Group, PLLC", + "OrganizationName": "Beebe School Based Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Factoria Women and Family Clinic", + "OrganizationName": "DE - Beebe Physician Network, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Bagley Orthopedic Trauma \u0026 Sports", + "OrganizationName": "RI - Associates in Primary Care Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - V \u0026 M Pediatrics", + "OrganizationName": "LAKEFRONT MEDICAL ASSOCIATES LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Spirit of Texas Family Medicine", + "OrganizationName": "WEISS PHYSICIANS GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Cleo Baruiz, M.D., P.A.", + "OrganizationName": "LA - Carousel Pediatrics APMC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - My Health 1st Urgent Care, LLC", + "OrganizationName": "VA - Adult \u0026 Child Foot \u0026 Ankle Care, LL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Kern Primary Care Medical Clinic In", + "OrganizationName": "OR - Justin T. Johnson Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension St. Vincent - Indiana", + "OrganizationName": "OH - Pain Alternatives, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "St. Mary's Medical Group", + "OrganizationName": "GA - Atlanta Breast Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Rural Health, Inc", + "OrganizationName": "WI - Community Foot and Ankle Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC House Calls/Main Street Physicians", + "OrganizationName": "PA - Complete Women's Care, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Sports Medicine North", + "OrganizationName": "AR - Face to Face, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sports Medicine North", + "OrganizationName": "PA - HRC Medical Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Fore River Urology LLC", + "OrganizationName": "OH - Olentangy Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Brian C. Wallace, MD", + "OrganizationName": "CO - Surgical Associates of Western Colo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Associated Women's Health, LTD.", + "OrganizationName": "WA - Bellevue Podiatric Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Columbia Gorge Neurology Specialists", + "OrganizationName": "IN - GILLUM FACIAL PLASTIC SURGERY, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Columbia Gorge- Burns Brand", + "OrganizationName": "CA - Dahlia T. Carr M.C. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - New Directions Physician Weight Los", + "OrganizationName": "PA - Center for Colon and Rectal Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hermosa Medical \u0026 Diagnostic Center", + "OrganizationName": "RI - Providence Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Hermosa Medical \u0026 Diagnostic Center", + "OrganizationName": "CT - Lester R Schwartz MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - University Pain Consultants, Inc.", + "OrganizationName": "KS - Wilson Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Mid State Gastroenterology, LLC", + "OrganizationName": "VA - Ocean Psychiatric Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Gym Spa LLC", + "OrganizationName": "NC - New Hope Family Medicine P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MDCS Dermatology Clifton/Englewood", + "OrganizationName": "NC - Wellcare Medical, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MDCS Dermatology Long Island", + "OrganizationName": "IL - Lumen Cardiovascular Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MDCS Dermatology Manhattan", + "OrganizationName": "DE - Lewes Family Practice, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MDCS Dermatology Marlboro", + "OrganizationName": "FL - Gulf Coast Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "do not use", + "OrganizationName": "VA - Virginia Pediatrics, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Plastic\u0026Reconstructive Surgery Inst", + "OrganizationName": "OH - Perrysburg Family Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women's Surgery Center", + "OrganizationName": "TX - Bumps N' Bruises Pediatric Urgent C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Elevate Health, Inc", + "OrganizationName": "MD - CYNTHIA N. SCHAEFFER, M.D., P.A", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - W Patients First, LLC", + "OrganizationName": "CA - Sarasa Kumar MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Pediatric Practice, P.C.", + "OrganizationName": "GA - Family Med Associates of Dalton, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Alpine Family Medicine", + "OrganizationName": "OK - National Family Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - MVPediatrics", + "OrganizationName": "NJ - BERNARDSVILLE PEDIATRICS LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - North Texas Sinus, P.A.", + "OrganizationName": "NC - Charlotte Metro Hyperbarics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Saint Thomas Medical Partners", + "OrganizationName": "VA - Virginia Beach Premier Medical, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hillenbrand", + "OrganizationName": "CT - SmartStart Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Ascension - Tennessee", + "OrganizationName": "TX - DANIEL V. VIJJESWARAPU, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Arroyo Vista Advanced Pain Speciali", + "OrganizationName": "GA - Timothy C. Dindoffer, MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Kim M. Davies, M.D., P.A.", + "OrganizationName": "WV - Brian S. Love, M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Main Street Family Clinic", + "OrganizationName": "AR - The Surgical Clinic of Central AR", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Long Island Health and Wellness Fam", + "OrganizationName": "NM - CHRISTUS Southern New Mexico", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Antwan Ahad MD", + "OrganizationName": "Exceed Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Yum Pediatrics", + "OrganizationName": "UT - Jon W. Ahlstrom M.D. PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - William P. Holt, D.P.M.", + "OrganizationName": "NC - North Wake Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Lawrence Family Doctors", + "OrganizationName": "OR - Karoline Woitke, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Fort Bend Heart Center, LTD., L.L.P", + "OrganizationName": "OH - Gregory Hudson MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Evans Medical Group, P.C.", + "OrganizationName": "Drs. KATZ \u0026 KADE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fallbrook Healthcare Partners", + "OrganizationName": "PHYSICIANS WOMEN'S SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Barstow Primary Care Clinic", + "OrganizationName": "NM - Alumbra Women's Health/Maternity", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Pingfeng DU, M.D., Inc", + "OrganizationName": "NY - Marius Killian N DiTursi MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Village Doctor LTD", + "OrganizationName": "TX - Dr. Bart Pruitt Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LOWHAM SURGERY AND ENDOSCOPY P.C.", + "OrganizationName": "OR - Oregon Coast Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WALKER SURGERY AND ENDOSCOPY PC", + "OrganizationName": "FL - Lisa E. Mark MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Sunrise Family Clinic, LLC", + "OrganizationName": "MA - Healthquarters, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Spectra Healthcare Associates, P.A.", + "OrganizationName": "IN - Women's Specialty Health Ctrs, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Brigitte Lorenz, MD, PLLC", + "OrganizationName": "CA - Epic Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Collier Urgent Care PA", + "OrganizationName": "FL - A Kid's Place, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Highlands OB-GYN, PLLC", + "OrganizationName": "MA - Long Pond Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Surgical Associates of Bloomington,", + "OrganizationName": "OK - Shepherds' Place Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - David K Cohen MD", + "OrganizationName": "NJ - Morris County Primary Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Kevin Dux, DPM, Inc., PC", + "OrganizationName": "Advanced Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Arthritis \u0026 Joint Center of FL", + "OrganizationName": "NC - Prime Health Medical Clinic, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BASSETTI \u0026 ASSOCIATES, MD, PA", + "OrganizationName": "VA - Rafiq Saljuki M.D. LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LUIS DUHARTE AND ASSOCIATES, MD, LLC", + "OrganizationName": "FL - Port Orange Gynecology LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NARVAEZ-LUGO AND ASSOCIATES MD PA", + "OrganizationName": "Bon Secours- Hampton Roads- Inactive", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SHAILESH JOSHI MD,PLLC", + "OrganizationName": "Franklin Clinic Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Alternatives for Women, Inc", + "OrganizationName": "VA - Bon Secours- Hampton Roads", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - The Colorado Women's Health Center", + "OrganizationName": "TX - Kavitha Moolamalla MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Colonial Foot and Ankle", + "OrganizationName": "FL - The Foot \u0026 Ankle Care Center, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Jennifer Fretz, PLC", + "OrganizationName": "FL - John Brent, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Kennebunk Family Practice, LLC", + "OrganizationName": "CA - AAI Health Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - ROSHAN RAJA, D.O., P.C.", + "OrganizationName": "TX - Manish Dimri, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Vitale Institute", + "OrganizationName": "IL - Ensign Medical, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Mather Primary Care", + "OrganizationName": "MO - Vo Medical Clinic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Canyon Vista Bone and Joint Surgery", + "OrganizationName": "BADM Main St", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - Bates Medical Clinic", + "OrganizationName": "CA - Tejas Patel, M.D. Corporation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC001_Greensboro OB-GYN Associates, Inc.", + "OrganizationName": "CHS Centre Clinic Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC002_Central Carolina Obstetrics Gynecology, PA", + "OrganizationName": "MS - Reservoir Family Medical Clinic, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC003_Green Valley OB-GYN and Infertility, PA", + "OrganizationName": "CA - Riviera Allergy Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC004_Physicians for Women of Greensboro", + "OrganizationName": "SGMC Valdosta Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC005_LYNDHURST GYNECOLOGIC ASSOCIATES", + "OrganizationName": "South Georgia Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC006_Hawthorne OBGYN Associates", + "OrganizationName": "OH - Revitalize", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC007_TRIANGLE PHYSICIANS FOR WOMEN, LLC", + "OrganizationName": "MD - Dragos L. Popescu MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC008_DURHAM WOMENS CLINIC PA", + "OrganizationName": "VA - Virginia Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC009 CHAPEL HILL OBSTETRICS \u0026 GYNECOLOGY", + "OrganizationName": "WA - Integrative Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC010_ARBOR OBSTETRICS AND GYNECOLOGY", + "OrganizationName": "MI - Liberty Pediatrics, P.L.L.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC011_CARY OB/GYN PA", + "OrganizationName": "VA - Annandale Foot and Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC012_BLUE RIDGE OB/GYN ASSOCIATES PLLC", + "OrganizationName": "MI - SHELBY PEDIATRIC ASSOC. \u0026 LUNG Ctr.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC013_RALEIGH OB/GYN CENTRE PA", + "OrganizationName": "FL - Duviel Irizarry LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC014_FAYETTEVILLE WOMANS CARE", + "OrganizationName": "MI - Lisa Beth Speck, MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC015_ASSOCIATES IN WOMENS HEALTHCARE", + "OrganizationName": "IN - Mapleton Medical Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC016_THE GYN CENTER FOR WOMEN, PA", + "OrganizationName": "GA - Preferred Women's Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC017_THE JONES CENTER FOR WOMENS HEALTH LLC", + "OrganizationName": "MI - MATTHEW H. KOPERA, M.D., PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC018_WHA-CENTRE OBGYN", + "OrganizationName": "NJ - Pediatric Associates of Morris LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC019_WHA-CAPITAL AREA", + "OrganizationName": "NE - The Urology Center PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC020_WHA-WILKERSON OBGYN", + "OrganizationName": "KS - Kingman County Health Department", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC021_WHA-MID CAROLINA OBGYN", + "OrganizationName": "OH - Ohio Advanced Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC022_JOHN J MARKS MD GYNECOLOGY PLLC", + "OrganizationName": "WA - Ridgefield Family Medicine PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC023_CAROLINA GYNECOLOGY PA", + "OrganizationName": "AZ - Womens Clinic of Northern Arizona", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC024_A WOMANS PLACE IN FAYETTEVILLE, LLC", + "OrganizationName": "PA - Dr. Bill O'Brien, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC025_BIRTH AND WOMENS CARE PA", + "OrganizationName": "NJ - North Bergen Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC026_WOMENS HEALTH OF ROCKY MOUNT", + "OrganizationName": "OR - Mark R. Hollemon, D.O., LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC027_A WOMANS VIEW", + "OrganizationName": "NJ - Trenton Orthopaedic Group, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC028_NASH OB-GYN ASSOCIATES PA", + "OrganizationName": "PA - New Path MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC029_CARTERET OB GYN ASSOCIATES PA", + "OrganizationName": "OH - Miami Orthopedics \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC030_HIGHLAND OB/GYN CLINIC PA", + "OrganizationName": "TN - Perrigin Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC031_WOMENS HEALTH ALLIANCE MIDWIFERY PA", + "OrganizationName": "GA - Woodstock Pediatrics P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC032_CATAWBA WOMEN'S CENTER", + "OrganizationName": "WY - Lander Women's Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC033_WAYNE WOMEN'S CLINIC, PA", + "OrganizationName": "TRIAD PRIMARY CARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC034_ASHEVILLE WOMEN'S MEDICAL CENTER", + "OrganizationName": "PA - Dr. Paul's Family \u0026 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC035_LAUREL OB/GYN, PA", + "OrganizationName": "CO - South Routt Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC036_BILTMORE OB-GYN, PA", + "OrganizationName": "NM - Spine and Orthopedic Center of NM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC037_Lumberton Obstetrics \u0026 Gynecology Associates PA", + "OrganizationName": "ARDC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC038_WILLIAMSON GYNECOLOGY", + "OrganizationName": "Ortho", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC039_RUTHERFORD OB-GYN ASSOCIATES, PA", + "OrganizationName": "Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC040_WOMENS WELLNESS CLINIC", + "OrganizationName": "Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC041_LAKESHORE WOMENS SPECIALISTS", + "OrganizationName": "SC - Life In a Blender, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC042_FOR WOMEN PA", + "OrganizationName": "NC - Carolina Pain Center, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC043_RALEIGH GYNECOLOGY \u0026 WELLNESS PA", + "OrganizationName": "CT - Litchfield Hills Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC044_CITY OF OAKS MIDWIFERY", + "OrganizationName": "OH - Lois A. Nelson, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC045_ARBORETUM OBSTETRICS \u0026 GYNECOLOGY, PA", + "OrganizationName": "OR - Grapevine Women's Health and GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC046_WENDOVER OBGYN AND INFERTILITY INC", + "OrganizationName": "NY - Karen LaFace MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC047_GYNECOLOGY AND LAPAROSCOPIC SURGEONS PC", + "OrganizationName": "KS - Sunflower Primary/Prompt Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC048_REDEFINED FOR HER", + "OrganizationName": "LA - Coastal Urgent Care of Louisiana", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC049_GRACE OB-GYN", + "OrganizationName": "Total Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC501_CHARLESTON OBGYN", + "OrganizationName": "MA - Orthopedic Assc Northern Berkshire", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC502_LOWCOUNTRY WOMENS SPECIALISTS PA", + "OrganizationName": "TX - Medical Center West", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC503_HIGHLANDS CENTER FOR WOMEN PA", + "OrganizationName": "OH - Ohio Vein \u0026 Vascular, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC504_WOMENS HEALTH PARTNERS PA", + "OrganizationName": "GA - Diabetes and Endocrine Treatment Ce", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CC901_SPECIALTY SERVICES CENTER", + "OrganizationName": "FL - Pedro Ylisastigui MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTH CAROLINA TEST", + "OrganizationName": "David Hong DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Robert D. Ross, MD", + "OrganizationName": "Sanjay Jobanputra MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Primary Care Specialists, PLL", + "OrganizationName": "SP Docs(Dr.s Hackett, Schmidlein \u0026 Ginsburg)", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - New Orleans Medical Associates, LLC", + "OrganizationName": "PA - Emkey Arthritis \u0026 Osteoporosis Clin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Robert A. Graebe, M.D., LLC", + "OrganizationName": "WV - Cabin Creek Health Systems", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Nathan Swartz, Inc", + "OrganizationName": "OK - Davenport Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Bryan \u0026 Sang Medical Association PA", + "OrganizationName": "OR - Integrative Advantage LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Advent Health Group, P.C.", + "OrganizationName": "VA - Family Care of Fredericksburg, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Maternal Resources", + "OrganizationName": "WV - Valley Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Aspire Services Group, LLC", + "OrganizationName": "FL - East Lake Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Healthy Horizons Pediatrics, LLC", + "OrganizationName": "CA - Milan C. Patel, MD, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - South Florida Allergy \u0026 Asthma Spec", + "OrganizationName": "TX - SupraCare Family Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Jan J Akus MD", + "OrganizationName": "VA - Surgical Care of the Virginias, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Heritage Clinic", + "OrganizationName": "MA - Regis Community Health Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Dresden Family Clinic, LLC", + "OrganizationName": "WV - West Virginia Heart Vasculr Ins", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Stemmer Pediatrics, PC", + "OrganizationName": "MA - Dr. Adnan Elamine, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Macfield Pediatrics and Family Medi", + "OrganizationName": "MD - Advanced Medicine, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - LaRue \u0026 LaRue Pediatrics, PA", + "OrganizationName": "AR - Fore Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - R. RUBINSTEIN, M.D., INC.", + "OrganizationName": "Dalton Ear, Nose \u0026 Throat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Desert Kids Pediatrics, PLC", + "OrganizationName": "GA - Dalton ENT Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - The Gynecology Institute of Chicago", + "OrganizationName": "NW GA Surgery Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Renuka Ramakrishna MD S.C.", + "OrganizationName": "TN - William E Smith OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Apex Medical, PLLC", + "OrganizationName": "IL - Rhoda Pomerantz, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Mercy Grace Private Practice", + "OrganizationName": "GA - Oakhurst Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Aspen Creek Medical Associates", + "OrganizationName": "AZ - Desert Podiatric Med Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - PrimeHealth Asheville", + "OrganizationName": "AR - Andrews Neuropsychology Consulting", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Odessa Sleep Associates", + "OrganizationName": "TX - Sanjay Misra, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Propicius Brain \u0026 Spine, LLC", + "OrganizationName": "FL - Hightower Dermatology Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - J\u0026G Medical Services PLLC", + "OrganizationName": "VA - Breast Care Specialists, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Obstetrical \u0026 Gynecological Assoc", + "OrganizationName": "CT - Sophia Leonida, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - The Carolina Clinic", + "OrganizationName": "MA - Family Medicine Associates of SA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Premier Foot and Ankle Specialist P", + "OrganizationName": "Family Health Centers of Baltimore", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Rafia Khalil Arthritis \u0026 Rheuma", + "OrganizationName": "TX - Fisher Cardiology and Electrophysio", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Shahram F Ravan MD Inc", + "OrganizationName": "SC - Colon Rectal Surgery Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - STARRETT PODIATRY, LLC", + "OrganizationName": "Coastal Health Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Neurology Wellness, PLLC", + "OrganizationName": "MD - Mid-Atlantic Epilepsy \u0026 Sleep Ctr", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Eddlemon's Office", + "OrganizationName": "FL - Edouard Coupet MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Westphal's Office", + "OrganizationName": "NJ - Totowa Pediatrics Group PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Nirmala P Vallurupalli MD, PA", + "OrganizationName": "SC - Remedy Internal Medicine \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Oaktree Medical Centers", + "OrganizationName": "WV - FamilyCare HealthCenter", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Don Jablonski D.O. P.A.", + "OrganizationName": "CT - Rocky Hill Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Gosnell Family Medicine, P.C.", + "OrganizationName": "MS - Natchez Women's Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - CareNet of Lancaster", + "OrganizationName": "Katahdin Valley Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Joanne Vogel, MD Inc", + "OrganizationName": "Katahdin Valley Health Center (FP, no portal use)", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Munira Dudhbhai, PLLC", + "OrganizationName": "MI - Pulmonary and CC Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Medical Arts Dermatology PA", + "OrganizationName": "MD - Emerson C Walden MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Neurological Associates of North TX", + "OrganizationName": "Lowcountry Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - BradfordScottsboro Family Practices", + "OrganizationName": "Lowcountry Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bradford Family Healthcare PC", + "OrganizationName": "Midlands Orthopaedics \u0026 Neurosurgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Scottsboro Family Physicians PC", + "OrganizationName": "Signe Spine \u0026 Rehab", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Live Oak Cardiology, PA", + "OrganizationName": "Winning Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Premium Care Medical Center, LLC", + "OrganizationName": "NC - Carolina Women's Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Diane Brzezinski DO PA", + "OrganizationName": "OH - Canton Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - El Paso Infectious Diseases", + "OrganizationName": "MA - Shrewsbury OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Comprehensive Pain Consultants", + "OrganizationName": "TX - Discovery Medical Network Henrietta", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Med Spa of Virginia, Inc.", + "OrganizationName": "AL - Advanced Medicine + Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Dr. Ann Kim, PC.", + "OrganizationName": "MO - Nettesheim Family Footcare, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - SUSIE N. CHUNG, M.D., P.A.", + "OrganizationName": "MD - University Medical Care, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Children's Medical Group", + "OrganizationName": "CA - Catalin Marinescu MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pediatric Endocrinology", + "OrganizationName": "AR - Arkansas Orthopedic Surgery and Wel", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pediatric Resource Center", + "OrganizationName": "OK - Patricia A Farmer APRN CNP PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Colorado Hand \u0026 Arm, P.C.", + "OrganizationName": "NE - Healthservicesone, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Regional Infectious Disease", + "OrganizationName": "OK - Sang H. Lee, D.O., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Masami Hattori, MD, Inc", + "OrganizationName": "NC - Mill Creek Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Monte Veal DO PLLC", + "OrganizationName": "IN - MEDICAL ASSOCIATES OF NWI LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Walter Willoughby, MD", + "OrganizationName": "GA - Gainesville Heart \u0026 Vascular Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Southcoast Cardiology, LLC", + "OrganizationName": "SC - Carolina Urgent \u0026 Family Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Lancaster Cardiology Group, LLC", + "OrganizationName": "NY - Patricia Kavanagh, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Mazher Hussain, M.D., P.C.", + "OrganizationName": "CA - Nephrology Specialists Medical Grp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Stedman-Wade Health Services", + "OrganizationName": "OH - David Nicholson D.O., LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Physicians \u0026 Midwives", + "OrganizationName": "TN - Allied Pediatrics, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Compass Dermatopathology, Inc.", + "OrganizationName": "MO - Willow Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Biggers Family Medicine", + "OrganizationName": "OH - Affiliated Podiatrists, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Kent R Walker DO", + "OrganizationName": "NY - Brooklyn Midwifery \u0026 Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - TURKE AND THOMASHOW PEDIATRICS, P.C", + "OrganizationName": "IL - Laura E Baber MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Ferne R Lavine MD", + "OrganizationName": "WV - Marilyn W. Horacek, D.O.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - North Oaks Internal Medicine Assoc", + "OrganizationName": "TN - Shete Ear Nose Throat Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Next Step Pediatrics", + "OrganizationName": "AZ - Ohana Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ESP Medical LLC", + "OrganizationName": "FL - Florida Vein Care Specialists, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GENERATIONS FAMILY PRACTICE - CARY", + "OrganizationName": "MD - Arundel Pediatrics, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GENERATIONS FAMILY PRACTICE - NORTH RIDGE", + "OrganizationName": "Lady of the Sea General Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lawrence OB/GYN", + "OrganizationName": "Lady of the Sea General Surgery Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Webster Family Physicians, P.C.", + "OrganizationName": "Lady of the Sea Medical Clinic - Cut Off", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ARIZONA WOMEN'S HEALTH, PLLC", + "OrganizationName": "Lady of the Sea Medical Clinic - Larose", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Rearden Internal Medicine \u0026 Ger", + "OrganizationName": "AZ - ESTRELLA EAR, NOSE AND THROAT, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - URGENT HEALTH CLINIC MEDICAL GROUP,", + "OrganizationName": "MA - Lisa Giudice, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Seven Corners Medical Center, PLLC", + "OrganizationName": "MA - PEDIATRIC CARE ASSOCIATES, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ID - Intermountain Spine and Orthopaedic", + "OrganizationName": "MA - Boston Sports and Shoulder Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Breathe Pediatrics, PLLC", + "OrganizationName": "Family First Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Village Family Clinic and Wellness", + "OrganizationName": "MD - Nephrology Center of Maryland", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Village Pediatrics", + "OrganizationName": "OH - Melvin S Gale MD and Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Small Town Primary Care", + "OrganizationName": "FL - Prettelt Center for Family Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Emerald Coast ENT", + "OrganizationName": "AR - Clarksville Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kunz Medical", + "OrganizationName": "VA - Blue Ridge Speech \u0026 Hearing Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kunz Medical 2", + "OrganizationName": "Delta Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Sports \u0026 Spine Pain Management, LLC", + "OrganizationName": "TX - Rockwall Neurology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Metro Health \u0026 Wellness", + "OrganizationName": "CT - CARDIOVASCULAR SPECIALISTS OF SOUTH", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Pediatrics of Dalton, P.A.", + "OrganizationName": "FL - Night and Day Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - MyCare Clinic, LLC", + "OrganizationName": "AZ - Desert Sky Spine \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Richard A. Rectenwald DPM", + "OrganizationName": "TX - Preferred Spine and Pain, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Premier Medical Group", + "OrganizationName": "NE - ALAN D. JENSEN, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OrthoWilmington", + "OrganizationName": "TX - Mary V. Mirto, DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Folahan Ayoola, MD, PA", + "OrganizationName": "OK - Nancy A. Brown, DO, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Scott C. Lostetter DO", + "OrganizationName": "TX - Excel Cardiac Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CHARM", + "OrganizationName": "CA - CareFirst Medical Group, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Sarasota Pain Associates, P.A.", + "OrganizationName": "MS - Amory Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Thomas J Trese DO, PA", + "OrganizationName": "PA - Morris E. McCray DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Ettienne's Premier Pediatric Care", + "OrganizationName": "FL - Magnolia Pediatrics Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Rolando Estupigan, DO", + "OrganizationName": "NJ - Women's Healthcare of Princeton, L.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Annabelle Lopez MD PA", + "OrganizationName": "PA - Pediatric \u0026 Preventive Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - St. Mark's Medical Center", + "OrganizationName": "FL - Richard G Valenzuela, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Coleman Pediatrics", + "OrganizationName": "CA - JOYDIP BHATTACHARYA, D.O. MEDICAL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolinas Sleep Specialists, P.A.", + "OrganizationName": "WV - Riverside Medical Group, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Signature Health, PC", + "OrganizationName": "WA - Factoria Women and Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - Alpine Family Medicine \u0026 Allergy", + "OrganizationName": "CO - Bagley Orthopedic Trauma \u0026 Sports", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - Great Basin Orthopaedics", + "OrganizationName": "TX - V \u0026 M Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Leal Medical Center, LLC", + "OrganizationName": "TX - Spirit of Texas Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Premier Pediatrics", + "OrganizationName": "NC - Cleo Baruiz, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Eyecare Centers of Florida, LLC", + "OrganizationName": "CT - My Health 1st Urgent Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ID - Healthcare with Heart, LLC", + "OrganizationName": "CA - Kern Primary Care Medical Clinic In", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - SLEEP DIAGNOSTIC \u0026 RESEARCH OF AZ", + "OrganizationName": "Ascension St. Vincent - Indiana", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Just for Women Gynecology", + "OrganizationName": "St. Mary's Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - L G Steck Memorial Clinic PS", + "OrganizationName": "IL - Rural Health, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Kilby Pediatrics, LLC", + "OrganizationName": "Your Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Internal Medicine Assoc. of Natchez", + "OrganizationName": "MA - Sports Medicine North", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Children's and Family Medical Clini", + "OrganizationName": "Sports Medicine North", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Joseph Medical Group", + "OrganizationName": "ME - Fore River Urology LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Boulder Management Service Org", + "OrganizationName": "MD - Brian C. Wallace, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Craig S. Carter MD FACS PA", + "OrganizationName": "IL - Associated Women's Health, LTD.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Integrative Physical Medicine", + "OrganizationName": "Columbia Gorge Neurology Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SOUTH FLORIDA PHYSICAL MEDICINE", + "OrganizationName": "Columbia Gorge- Burns Brand", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - G Hagan Jackson MD PC", + "OrganizationName": "AR - New Directions Physician Weight Los", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Natchez After Hours Clinic", + "OrganizationName": "Hermosa Medical \u0026 Diagnostic Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Oak Orthopedics", + "OrganizationName": "IL - Hermosa Medical \u0026 Diagnostic Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dwell Family Doctors", + "OrganizationName": "CA - University Pain Consultants, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "McIntosh Clinic, P.C.", + "OrganizationName": "NJ - Mid State Gastroenterology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Privia Medical Group", + "OrganizationName": "NJ - Gym Spa LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Brandon Gynecology Associates PA", + "OrganizationName": "MDCS Dermatology Clifton/Englewood", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - DoctorMom MD, PLLC", + "OrganizationName": "MDCS Dermatology Long Island", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Orthopedic Clinic", + "OrganizationName": "MDCS Dermatology Manhattan", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Myaing MD, PA, Inc. Alfred C.", + "OrganizationName": "MDCS Dermatology Marlboro", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Robert P Feldman MD", + "OrganizationName": "do not use", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Heaven Sent Medical Services LLC", + "OrganizationName": "MD - Plastic\u0026Reconstructive Surgery Inst", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Glassman Eye Associates", + "OrganizationName": "Women's Surgery Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - InStep Podiatry Center, LLC", + "OrganizationName": "CA - Elevate Health, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Jill Marjama-Lyons, MD", + "OrganizationName": "NJ - W Patients First, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Crane Medical Clinic, P.A.", + "OrganizationName": "VA - Pediatric Practice, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - AccessMD, PL", + "OrganizationName": "NV - Alpine Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Annapolis Nephrology Associates LLC", + "OrganizationName": "MA - MVPediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Womans Ctr. for Adv. Pelvic Surgery", + "OrganizationName": "TX - North Texas Sinus, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Naples Women's Center, LLC", + "OrganizationName": "Ascension Saint Thomas Medical Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Jersey Care OB/GYN, LLC", + "OrganizationName": "Hillenbrand", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sierra Precision Surgical", + "OrganizationName": "TN - Ascension - Tennessee", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Strong Women's Health, LLC", + "OrganizationName": "CA - Arroyo Vista Advanced Pain Speciali", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rocky Vista Health Center", + "OrganizationName": "KS - Kim M. Davies, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - ANSON PEDIATRICS", + "OrganizationName": "OK - Main Street Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - FRED W. WILLIAMS, MD, P.C.", + "OrganizationName": "NY - Long Island Health and Wellness Fam", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Goldsmith Clinic", + "OrganizationName": "NJ - Antwan Ahad MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sinus Registry, PLLC", + "OrganizationName": "VA - Yum Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Alabama Women's Wellness Center PC", + "OrganizationName": "TN - William P. Holt, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Infectious Diseases Associates Of B", + "OrganizationName": "MA - Lawrence Family Doctors", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Genesis Family Health", + "OrganizationName": "TX - Fort Bend Heart Center, LTD., L.L.P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Affinity Medical", + "OrganizationName": "GA - Evans Medical Group, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arcadia Well Woman", + "OrganizationName": "Barstow Primary Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Total Woman Health Care Center", + "OrganizationName": "CA - Pingfeng DU, M.D., Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - ENT Care for Kids, PA", + "OrganizationName": "IL - Village Doctor LTD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Woodlands Cosmetic \u0026 Hand Assoc.", + "OrganizationName": "LOWHAM SURGERY AND ENDOSCOPY P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Rockwall Pediatrics", + "OrganizationName": "WALKER SURGERY AND ENDOSCOPY PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Surgery Associates of Houston", + "OrganizationName": "OR - Sunrise Family Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Healthy Living First, PLLC", + "OrganizationName": "FL - Spectra Healthcare Associates, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NH - Fleischer Spine LLC", + "OrganizationName": "MI - Brigitte Lorenz, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Mark A. Schroer, M.D. PLLC", + "OrganizationName": "FL - Collier Urgent Care PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Unifour Family Health Care, LLC", + "OrganizationName": "TN - Highlands OB-GYN, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Better Me Healthcare, LLC", + "OrganizationName": "IN - Surgical Associates of Bloomington,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - General Physicians Group, PA", + "OrganizationName": "TX - David K Cohen MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - OMAHA INTEGRATIVE CARE, LLC", + "OrganizationName": "OK - Kevin Dux, DPM, Inc., PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Omaha Integrative Care", + "OrganizationName": "FL - Arthritis \u0026 Joint Center of FL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Michigan Ctr for Ortho Surgery PLLC", + "OrganizationName": "BASSETTI \u0026 ASSOCIATES, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Christopher J Ginocchio MD", + "OrganizationName": "LUIS DUHARTE AND ASSOCIATES, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Elizabeth North DO", + "OrganizationName": "NARVAEZ-LUGO AND ASSOCIATES MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Excelsior Podiatry Clinic, PLLC", + "OrganizationName": "SHAILESH JOSHI MD,PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Bradford Anderson M.D.,Inc.", + "OrganizationName": "NV - Alternatives for Women, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Advanced Geriatric Care \u0026 Family", + "OrganizationName": "CO - The Colorado Women's Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Bruce Hopper, Jr., M.D., LLC", + "OrganizationName": "OH - Colonial Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - RIVER ROCK INTERVENTIONAL PAIN SPEC", + "OrganizationName": "MI - Jennifer Fretz, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Wilmington Adult Medicine Stephen J", + "OrganizationName": "ME - Kennebunk Family Practice, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Robert Cooper Jr.", + "OrganizationName": "NV - ROSHAN RAJA, D.O., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Advanced Neighborhood Pediatrics", + "OrganizationName": "FL - Vitale Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Dr. Deshonta King", + "OrganizationName": "NY - Mather Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - One Heart LLC", + "OrganizationName": "AZ - Canyon Vista Bone and Joint Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Hand Center", + "OrganizationName": "WI - Bates Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Rainbow Pediatrics", + "OrganizationName": "CC001_Greensboro OB-GYN Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - VISITING PHYSICIANS OF CALIFORNIA", + "OrganizationName": "CC002_Central Carolina Obstetrics Gynecology, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - NP CLINICS, PLLC", + "OrganizationName": "CC003_Green Valley OB-GYN and Infertility, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Great Lakes Health", + "OrganizationName": "CC004_Physicians for Women of Greensboro", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Evergreen Health Promotion", + "OrganizationName": "CC005_LYNDHURST GYNECOLOGIC ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Jolly B. Canlas, M.D.", + "OrganizationName": "CC006_Hawthorne OBGYN Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Neighborhood Wellness", + "OrganizationName": "CC007_TRIANGLE PHYSICIANS FOR WOMEN, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Coastal Interventional Pain", + "OrganizationName": "CC008_DURHAM WOMENS CLINIC PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Barrett Foot \u0026 Ankle Institute", + "OrganizationName": "CC009 CHAPEL HILL OBSTETRICS \u0026 GYNECOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ledesma Foot \u0026 Ankle Institute", + "OrganizationName": "CC010_ARBOR OBSTETRICS AND GYNECOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ralph N. Purcell, MD", + "OrganizationName": "CC011_CARY OB/GYN PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Child Neurology, PLLC", + "OrganizationName": "CC012_BLUE RIDGE OB/GYN ASSOCIATES PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alexander", + "OrganizationName": "CC013_RALEIGH OB/GYN CENTRE PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dunmore", + "OrganizationName": "CC014_FAYETTEVILLE WOMANS CARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Greenville Neuromodulation Center,", + "OrganizationName": "CC015_ASSOCIATES IN WOMENS HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALDONA STAAR KUMOSA, MD, PC", + "OrganizationName": "CC016_THE GYN CENTER FOR WOMEN, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KEVIN J MOLK, MD, PC", + "OrganizationName": "CC017_THE JONES CENTER FOR WOMENS HEALTH LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Stella Maris Healthcare LLC", + "OrganizationName": "CC018_WHA-CENTRE OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Green Island Health PLLC", + "OrganizationName": "CC019_WHA-CAPITAL AREA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Sorin Medical, P.C.", + "OrganizationName": "CC020_WHA-WILKERSON OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesboro OB/GYN Specialists", + "OrganizationName": "CC021_WHA-MID CAROLINA OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Preventive Medicine Institute, PA", + "OrganizationName": "CC022_JOHN J MARKS MD GYNECOLOGY PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Family Doctors, LLC", + "OrganizationName": "CC023_CAROLINA GYNECOLOGY PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - Anesthesia Services PA SurgiNav", + "OrganizationName": "CC024_A WOMANS PLACE IN FAYETTEVILLE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SurgiNAV", + "OrganizationName": "CC025_BIRTH AND WOMENS CARE PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Annapolis Colon \u0026 Rectal Surgeons", + "OrganizationName": "CC026_WOMENS HEALTH OF ROCKY MOUNT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dallas Hand Center", + "OrganizationName": "CC027_A WOMANS VIEW", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Southwestern Palliative Care", + "OrganizationName": "CC028_NASH OB-GYN ASSOCIATES PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Center For Sports Regen Orthopedics", + "OrganizationName": "CC029_CARTERET OB GYN ASSOCIATES PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - WHITE CITY MEDICAL CLINIC, LLC", + "OrganizationName": "CC030_HIGHLAND OB/GYN CLINIC PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Gulf Coast Immediate Care Center", + "OrganizationName": "CC031_WOMENS HEALTH ALLIANCE MIDWIFERY PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Richard A Cagna, MD LLC", + "OrganizationName": "CC032_CATAWBA WOMEN'S CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Genesys Hospital", + "OrganizationName": "CC033_WAYNE WOMEN'S CLINIC, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Michigan", + "OrganizationName": "CC034_ASHEVILLE WOMEN'S MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Michigan Employer Solutions", + "OrganizationName": "CC035_LAUREL OB/GYN, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Providence Rochester", + "OrganizationName": "CC036_BILTMORE OB-GYN, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Eastwood - to be determined", + "OrganizationName": "CC037_Lumberton Obstetrics \u0026 Gynecology Associates PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Ascension - Detroit/Flint", + "OrganizationName": "CC038_WILLIAMSON GYNECOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "School Based Clinics - No Portal", + "OrganizationName": "CC039_RUTHERFORD OB-GYN ASSOCIATES, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "St John Restricted", + "OrganizationName": "CC040_WOMENS WELLNESS CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Comprehensive Pain Management Partn", + "OrganizationName": "CC041_LAKESHORE WOMENS SPECIALISTS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - VITAL MEDICAL CARE AESTHETICS, P.C.", + "OrganizationName": "CC042_FOR WOMEN PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Angelique Barreto MDVIP", + "OrganizationName": "CC043_RALEIGH GYNECOLOGY \u0026 WELLNESS PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arthrokinex Joint Health", + "OrganizationName": "CC044_CITY OF OAKS MIDWIFERY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arthrokinex Regenerative Medicine LLC", + "OrganizationName": "CC045_ARBORETUM OBSTETRICS \u0026 GYNECOLOGY, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Barreto Health Care", + "OrganizationName": "CC046_WENDOVER OBGYN AND INFERTILITY INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NGS-South", + "OrganizationName": "CC047_GYNECOLOGY AND LAPAROSCOPIC SURGEONS PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NextGen Sleep", + "OrganizationName": "CC048_REDEFINED FOR HER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Vista Complete Care", + "OrganizationName": "CC049_GRACE OB-GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Southern California Bone and Joint", + "OrganizationName": "CC501_CHARLESTON OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dr. Matthew Thompson PLLC", + "OrganizationName": "CC502_LOWCOUNTRY WOMENS SPECIALISTS PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Arlington ENT Associates, P.C.", + "OrganizationName": "CC503_HIGHLANDS CENTER FOR WOMEN PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - G \u0026 I Kondray Mds Inc", + "OrganizationName": "CC504_WOMENS HEALTH PARTNERS PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - America's Foot Center, LLC", + "OrganizationName": "CC901_SPECIALTY SERVICES CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Pleasant Peds Care of Conyers LLC", + "OrganizationName": "NORTH CAROLINA TEST", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Art \u0026 Science of OB/GYN P.C.", + "OrganizationName": "LA - Robert D. Ross, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Dr. Jonathan Levin", + "OrganizationName": "TX - Texas Primary Care Specialists, PLL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Commonwealth Primary Care, LLC", + "OrganizationName": "LA - New Orleans Medical Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MBH_MARQUETTE BEHAVIORAL HEALTH", + "OrganizationName": "NJ - Robert A. Graebe, M.D., LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", + "OrganizationName": "CO - Nathan Swartz, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UP MEDICAL GROUP - MARQUETTE", + "OrganizationName": "SC - Bryan \u0026 Sang Medical Association PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UP MEDICAL GROUP - BELL", + "OrganizationName": "VA - Advent Health Group, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UP MEDICAL GROUP - PORTAGE", + "OrganizationName": "Maternal Resources", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UP OCCUPATIONAL MEDICINE", + "OrganizationName": "TX - Aspire Services Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Dennis Jordanides, MD, Inc.", + "OrganizationName": "IN - Healthy Horizons Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - First Family Care PLLC", + "OrganizationName": "FL - South Florida Allergy \u0026 Asthma Spec", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dameron Medical Group", + "OrganizationName": "CT - Jan J Akus MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dameron Occupational Medicine", + "OrganizationName": "OH - Heritage Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - HARMONY HEALTH MD", + "OrganizationName": "TN - Dresden Family Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Imelda P Cabalar MD LLC", + "OrganizationName": "MA - Stemmer Pediatrics, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - NoVa Foot and Ankle PLLC", + "OrganizationName": "MI - Macfield Pediatrics and Family Medi", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - David and Eldredge ENT Specialists", + "OrganizationName": "FL - LaRue \u0026 LaRue Pediatrics, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Pediatric Gastroenterology of CO", + "OrganizationName": "CA - R. RUBINSTEIN, M.D., INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Orange Grove Medical Specialties, P", + "OrganizationName": "AZ - Desert Kids Pediatrics, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "West Coast Kidney Institute", + "OrganizationName": "IL - The Gynecology Institute of Chicago", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Caring Hands Children's Clinic", + "OrganizationName": "IL - Renuka Ramakrishna MD S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Austin Foot \u0026 Ankle Specialists", + "OrganizationName": "MI - Apex Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Three Lakes Physical Therapy \u0026 Wellness Center", + "OrganizationName": "AZ - Mercy Grace Private Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Epoch Vitality", + "OrganizationName": "CO - Aspen Creek Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "New Horizons", + "OrganizationName": "NC - PrimeHealth Asheville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Yoakum Family Practice", + "OrganizationName": "TX - Odessa Sleep Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Womens Excellence In OBGYN", + "OrganizationName": "CT - Propicius Brain \u0026 Spine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - WESTERN NEW YORK TRUE CARE MEDICAL", + "OrganizationName": "AZ - J\u0026G Medical Services PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Luckay Doc PLLC", + "OrganizationName": "IN - Obstetrical \u0026 Gynecological Assoc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Peninsula Orthopaedic Associates PA", + "OrganizationName": "NC - The Carolina Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Peninsula Orthopaedic Associates", + "OrganizationName": "PA - Premier Foot and Ankle Specialist P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Diabetes Thyroid \u0026 Endocrinology Ce", + "OrganizationName": "MI - Rafia Khalil Arthritis \u0026 Rheuma", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Health One Medical Group, LLC.", + "OrganizationName": "CA - Shahram F Ravan MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - SD ALLERGY, ASTHMA \u0026 IMMUNOLOGY", + "OrganizationName": "NY - STARRETT PODIATRY, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Eric J. Watson, M.D.", + "OrganizationName": "NC - Neurology Wellness, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Jeffrey M Sauer DPM", + "OrganizationName": "Dr. Eddlemon's Office", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MedNM Urgent Care", + "OrganizationName": "Dr. Westphal's Office", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sherif Pediatrics Clinic LLC", + "OrganizationName": "TX - Nirmala P Vallurupalli MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Eduardo G. Romero M.D. PA", + "OrganizationName": "SC - Oaktree Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Ronald Solomon", + "OrganizationName": "NC - Don Jablonski D.O. P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Everett Urological,PLLC", + "OrganizationName": "NE - Gosnell Family Medicine, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Ahoskie Adult Medicine Clinic, PLLC", + "OrganizationName": "SC - CareNet of Lancaster", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Mark L. Douglas, DO", + "OrganizationName": "CA - Joanne Vogel, MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Adelson \u0026 Ginsberg MD PC", + "OrganizationName": "TX - Munira Dudhbhai, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Pioneer Health Care, LLC", + "OrganizationName": "TX - Medical Arts Dermatology PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Burgaw Medical Center \u0026 Hampstead Family Medicine", + "OrganizationName": "TX - Neurological Associates of North TX", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - East Valley Pain Management", + "OrganizationName": "AL - BradfordScottsboro Family Practices", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - That Foot Doctor, LLC", + "OrganizationName": "Bradford Family Healthcare PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Mary J. Forbes, M.D., PLLC", + "OrganizationName": "Scottsboro Family Physicians PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Dr M E Broadstone-Gaeke, LLC", + "OrganizationName": "TX - Live Oak Cardiology, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BCPA", + "OrganizationName": "LA - Premium Care Medical Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Adult \u0026 Pediatric Medical Associate", + "OrganizationName": "FL - Diane Brzezinski DO PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HI - Alii Bariatric Center, LLC", + "OrganizationName": "TX - El Paso Infectious Diseases", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Orange Place Enterprise", + "OrganizationName": "Comprehensive Pain Consultants", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Almudallal", + "OrganizationName": "VA - Med Spa of Virginia, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Imonugo", + "OrganizationName": "NJ - Dr. Ann Kim, PC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Morse", + "OrganizationName": "MD - SUSIE N. CHUNG, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Raugh", + "OrganizationName": "Children's Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Soltani", + "OrganizationName": "Pediatric Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Tupper", + "OrganizationName": "Pediatric Resource Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - April E Lopez FNP-BC, LLC", + "OrganizationName": "CO - Colorado Hand \u0026 Arm, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Urology and Urologic Surgery, PC", + "OrganizationName": "OH - Regional Infectious Disease", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - YOUR HEALTH HOME PLLC", + "OrganizationName": "CA - Masami Hattori, MD, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Eastport Health Care", + "OrganizationName": "OK - Monte Veal DO PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Eastport Health Care, Inc.", + "OrganizationName": "NV - Walter Willoughby, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Bruce Alan Barker DO, MBA, PA", + "OrganizationName": "MA - Southcoast Cardiology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - David S Gans MD", + "OrganizationName": "PA - Lancaster Cardiology Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Sunflower Pediatrics PC", + "OrganizationName": "MI - Mazher Hussain, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Lanier Adult Medicine", + "OrganizationName": "NC - Stedman-Wade Health Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Carolina Musculoskeletal Institute", + "OrganizationName": "Physicians \u0026 Midwives", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Stamford Gastroenterology, Inc.", + "OrganizationName": "CA - Compass Dermatopathology, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Chukwuma Osuagwu MD", + "OrganizationName": "FL - Biggers Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Wingard Primary Care, LLC", + "OrganizationName": "OR - Kent R Walker DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Orthopedic Specialty Care", + "OrganizationName": "MI - TURKE AND THOMASHOW PEDIATRICS, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Mid-South Urgent Care, PLLC", + "OrganizationName": "NJ - Ferne R Lavine MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Rocky Mountain Pulmonary", + "OrganizationName": "LA - North Oaks Internal Medicine Assoc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Burleson Old Town Medical Center", + "OrganizationName": "MO - Next Step Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Top Notch Pediatrics", + "OrganizationName": "ESP Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - The Nirmel Neurological Institute", + "OrganizationName": "GENERATIONS FAMILY PRACTICE - CARY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Neurosurgical Specialists Inc.", + "OrganizationName": "GENERATIONS FAMILY PRACTICE - NORTH RIDGE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Pandya Medical Center, Inc", + "OrganizationName": "Lawrence OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ACM Connect", + "OrganizationName": "MO - Webster Family Physicians, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ACM Kohl's Wellness Center", + "OrganizationName": "ARIZONA WOMEN'S HEALTH, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - K MEDICAL, P.C", + "OrganizationName": "SC - Rearden Internal Medicine \u0026 Ger", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Mountain Sky Cardiology, LLC", + "OrganizationName": "CA - URGENT HEALTH CLINIC MEDICAL GROUP,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Oklahoma Spine\u0026Musculoskeletal PLLC", + "OrganizationName": "VA - Seven Corners Medical Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Center for Quality Pain Care", + "OrganizationName": "ID - Intermountain Spine and Orthopaedic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Calhoun OB/GYN Associates, P.C.", + "OrganizationName": "Breathe Pediatrics, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Calais Regional Hospital", + "OrganizationName": "Village Family Clinic and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - UMA CHATTERJEE, M.D., P.A.", + "OrganizationName": "Village Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Louisville Geriatric Associates", + "OrganizationName": "NY - Small Town Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Louisville Geriatric Associates, PLLC", + "OrganizationName": "FL - Emerald Coast ENT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "M Care, PLLC", + "OrganizationName": "Kunz Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Orangeburg Primary", + "OrganizationName": "Kunz Medical 2", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Singer \u0026 Chiang, Medical Partners", + "OrganizationName": "MD - Sports \u0026 Spine Pain Management, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Medical Group Seton", + "OrganizationName": "GA - Metro Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Austin Pediatric Surgery", + "OrganizationName": "GA - Pediatrics of Dalton, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Allergy Asthma \u0026 Pulmonary Center", + "OrganizationName": "FL - MyCare Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ARVIND K GUPTA MD LLC", + "OrganizationName": "PA - Richard A. Rectenwald DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Surgical Associates of Milford", + "OrganizationName": "Premier Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Pillay Internal Medicine Associates", + "OrganizationName": "OrthoWilmington", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - San Jose Orthopedic Associates", + "OrganizationName": "TX - Folahan Ayoola, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - R. Walter Hunter, MD", + "OrganizationName": "WV - Scott C. Lostetter DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Three Rivers Health", + "OrganizationName": "TX - CHARM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "West Michigan Ear Nose \u0026 Throat", + "OrganizationName": "FL - Sarasota Pain Associates, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - MedNow, Inc", + "OrganizationName": "TX - Thomas J Trese DO, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Village Healthcare LLC", + "OrganizationName": "MD - Ettienne's Premier Pediatric Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - WESTFORD VEIN \u0026 AESTHETIC SOLUTIONS", + "OrganizationName": "MI - Rolando Estupigan, DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - New Image Medical Aesthetics \u0026 Well", + "OrganizationName": "TX - Annabelle Lopez MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Desert Family Physicians, PC", + "OrganizationName": "TX - St. Mark's Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Eric J. Meinhardt, MD", + "OrganizationName": "MD - Coleman Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - MEDICRUISER ONSITE CARE, INC.", + "OrganizationName": "NC - Carolinas Sleep Specialists, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - The Healthy Child, LLC", + "OrganizationName": "AL - Signature Health, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - North Fulton OB/GYN", + "OrganizationName": "WI - Alpine Family Medicine \u0026 Allergy", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Kodiak Island Ambulatory Care", + "OrganizationName": "NV - Great Basin Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - FOOTHILLS NEUROLOGY, P.C.", + "OrganizationName": "FL - Leal Medical Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Agility Foot \u0026 Ankle Specialty Cent", + "OrganizationName": "CO - Premier Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Norwood Podiatry Associates, P.C.", + "OrganizationName": "FL - Eyecare Centers of Florida, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Sandra J. Greco, MD, FACOG, PA", + "OrganizationName": "ID - Healthcare with Heart, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Sellwood Podiatry", + "OrganizationName": "AZ - SLEEP DIAGNOSTIC \u0026 RESEARCH OF AZ", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carolina Health Specialists", + "OrganizationName": "ME - Just for Women Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Dr. Mark Su MD", + "OrganizationName": "WA - L G Steck Memorial Clinic PS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Direct Healthcare PLLC", + "OrganizationName": "VA - Kilby Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Dr. Chista Safajou", + "OrganizationName": "MS - Internal Medicine Assoc. of Natchez", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Renee J Russell MD, INC, PC", + "OrganizationName": "MI - Children's and Family Medical Clini", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - KISHWAUKEE PHYSICIAN GROUP, INC.", + "OrganizationName": "CA - Joseph Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Center for Health \u0026 Sports Medicine", + "OrganizationName": "CO - Boulder Management Service Org", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Steel Family Medicine", + "OrganizationName": "NC - Craig S. Carter MD FACS PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - PCN MEDICAL GROUP LLC", + "OrganizationName": "Integrative Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Central NY Surgical Physicians", + "OrganizationName": "SOUTH FLORIDA PHYSICAL MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Kapasi Associates, P.C.", + "OrganizationName": "VA - G Hagan Jackson MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Forest County Potawatomi Health \u0026 Wellness Center", + "OrganizationName": "MS - Natchez After Hours Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. David Ellliot", + "OrganizationName": "Oak Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "G. Michael Lopez, MD", + "OrganizationName": "Dwell Family Doctors", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Neal A Dunitz, MD", + "OrganizationName": "McIntosh Clinic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Jaimela J. Dulaney", + "OrganizationName": "Privia Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Triumphant Health Care LLC", + "OrganizationName": "NC - Brandon Gynecology Associates PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - MED House Calls, LLC", + "OrganizationName": "TX - DoctorMom MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Shoals Orthopedics \u0026 Sports Medicin", + "OrganizationName": "TN - Orthopedic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Martin J Scott DO \u0026 Associates", + "OrganizationName": "VA - Myaing MD, PA, Inc. Alfred C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Suffolk Surgical Associates, LLC", + "OrganizationName": "NY - Robert P Feldman MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Hayward Foot \u0026 Ankle Center", + "OrganizationName": "NJ - Heaven Sent Medical Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Breton L Morgan MD", + "OrganizationName": "NJ - Glassman Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Christopher J Calcagni DPM PA", + "OrganizationName": "MD - InStep Podiatry Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Charles J. DePaolo, MD PA", + "OrganizationName": "NM - Jill Marjama-Lyons, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Pang Lay Kooi MDPC", + "OrganizationName": "TX - Crane Medical Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VT - Mary Stanley MD PC", + "OrganizationName": "FL - AccessMD, PL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopedic Services \u0026 Sports Medicine/Peter A Pizzarello, MD", + "OrganizationName": "MD - Annapolis Nephrology Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - WELCH URGENT CARE \u0026 WELLNESS CENTER", + "OrganizationName": "AZ - Womans Ctr. for Adv. Pelvic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Laurelhurst PT Clinic", + "OrganizationName": "FL - Naples Women's Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "EmergeOrtho", + "OrganizationName": "NJ - Jersey Care OB/GYN, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - EmergeOrtho", + "OrganizationName": "CA - Sierra Precision Surgical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Cochise Health and Wellness, PLC", + "OrganizationName": "CT - Strong Women's Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Peachtree Occupational Medicine", + "OrganizationName": "Rocky Vista Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Peachtree Orthopedics", + "OrganizationName": "NC - ANSON PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Amara Pain \u0026 Spine PLLC", + "OrganizationName": "NJ - FRED W. WILLIAMS, MD, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Hickory Flat Clinic, LLC", + "OrganizationName": "Goldsmith Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Phoebe Putney Health Systems", + "OrganizationName": "Sinus Registry, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Phoebe Physician Group", + "OrganizationName": "AL - Alabama Women's Wellness Center PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Monroe Hospital", + "OrganizationName": "LA - Infectious Diseases Associates Of B", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Monroe Medical Group", + "OrganizationName": "KS - Genesis Family Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Armstrong, Heyrana and Associates,", + "OrganizationName": "Affinity Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - America's Vein Center", + "OrganizationName": "Arcadia Well Woman", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - ERIC G. LEVY MEDICAL CORPORATION", + "OrganizationName": "TX - Total Woman Health Care Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Western Medical Associates", + "OrganizationName": "TX - ENT Care for Kids, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Medical Associates", + "OrganizationName": "TX - Woodlands Cosmetic \u0026 Hand Assoc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Florida Elite Medical Care, PA", + "OrganizationName": "TX - Rockwall Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Generations House Call Providers", + "OrganizationName": "TX - Surgery Associates of Houston", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Catherine's Health Center", + "OrganizationName": "KS - Healthy Living First, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Steven K Shoemaker, DPM \u0026 Assoc. IN", + "OrganizationName": "NH - Fleischer Spine LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - North Austin Foot and Ankle Institu", + "OrganizationName": "KY - Mark A. Schroer, M.D. PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Clinic of East End Association, LLC", + "OrganizationName": "NC - Unifour Family Health Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - John T Mather Memorial", + "OrganizationName": "FL - Better Me Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Brain \u0026 Spine Institute Port Orange", + "OrganizationName": "TX - General Physicians Group, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Spine \u0026 Pain Medicine Center, PA", + "OrganizationName": "NE - OMAHA INTEGRATIVE CARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Borinquen Medical Centers", + "OrganizationName": "Omaha Integrative Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Borinquen Medical Centers", + "OrganizationName": "MI - Michigan Ctr for Ortho Surgery PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Covenant Pediatrics, PA", + "OrganizationName": "Christopher J Ginocchio MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Dr. JB Winters", + "OrganizationName": "Elizabeth North DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - TriState Colon and Rectal Associate", + "OrganizationName": "TN - Excelsior Podiatry Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Joseph F. McWherter, MD, PA", + "OrganizationName": "CA - Bradford Anderson M.D.,Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Clear Creek OB/GYN", + "OrganizationName": "CA - Advanced Geriatric Care \u0026 Family", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sacred Heart Primary Care", + "OrganizationName": "PA - Bruce Hopper, Jr., M.D., LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Housatonic Valley Podiatric Center", + "OrganizationName": "NC - RIVER ROCK INTERVENTIONAL PAIN SPEC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Steven L. Saunders, M.D., LLC", + "OrganizationName": "NC - Wilmington Adult Medicine Stephen J", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Mattawa Community Medical Clinic", + "OrganizationName": "IN - Robert Cooper Jr.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Craig Jones, MD ENT Surgery, PC", + "OrganizationName": "MD - Advanced Neighborhood Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Advanced Gynecology Specialists of", + "OrganizationName": "NC - Dr. Deshonta King", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ambulatory Infusion Center", + "OrganizationName": "MD - One Heart LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Anna Shaw Children's Institute", + "OrganizationName": "TX - Texas Hand Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HMC The Full Circle", + "OrganizationName": "OH - Rainbow Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hamilton Medical Center", + "OrganizationName": "CA - VISITING PHYSICIANS OF CALIFORNIA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hamilton Physician Group", + "OrganizationName": "WA - NP CLINICS, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - SUNSET SURGERY CENTER, LLC", + "OrganizationName": "MI - Great Lakes Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brevard Orthopaedic Spine \u0026 Pain Clinic", + "OrganizationName": "NC - Evergreen Health Promotion", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - First Choice Medical", + "OrganizationName": "PA - Jolly B. Canlas, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "First Choice Medical", + "OrganizationName": "MD - Neighborhood Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Bradley A. Connor, M.D., PLLC", + "OrganizationName": "SC - Coastal Interventional Pain", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HSNHC", + "OrganizationName": "Barrett Foot \u0026 Ankle Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Teen Clinic", + "OrganizationName": "Ledesma Foot \u0026 Ankle Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - STAThealth Clinic, PLLC", + "OrganizationName": "Ralph N. Purcell, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Bradlee Family Center", + "OrganizationName": "NC - Carolina Child Neurology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lakeview ENT, LLC", + "OrganizationName": "Alexander", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Robert A Nussbaum MD, PC", + "OrganizationName": "Dunmore", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Center Pointe Family Medicine", + "OrganizationName": "PA - Greenville Neuromodulation Center,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Gregory J Tracey MD", + "OrganizationName": "ALDONA STAAR KUMOSA, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Leslie B Lindenberg MD", + "OrganizationName": "KEVIN J MOLK, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - J. Margo Jaffe Orr, M.D., Inc.", + "OrganizationName": "FL - Stella Maris Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Neurological Care of Indiana, Inc", + "OrganizationName": "TX - Green Island Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - STRIEDINGER MEDICAL GROUP", + "OrganizationName": "NY - Sorin Medical, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Tracy L. Basso, DPM", + "OrganizationName": "Statesboro OB/GYN Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - CAM Medical Group, S.C.", + "OrganizationName": "TX - Preventive Medicine Institute, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Reliable Healthcare PLLC", + "OrganizationName": "MA - Family Doctors, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - C\u0026C Medical Associates, PLLC", + "OrganizationName": "DE - Anesthesia Services PA SurgiNav", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Spinecare Medical Group", + "OrganizationName": "SurgiNAV", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Harbor View Medical Services", + "OrganizationName": "MD - Annapolis Colon \u0026 Rectal Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Aspire for Women Obstetrics and Gynecology", + "OrganizationName": "TX - Dallas Hand Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Associates in Women's Health", + "OrganizationName": "AZ - Southwestern Palliative Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cherry Hills Midwifery, Obstetrics \u0026 Gynecology", + "OrganizationName": "MD - Center For Sports Regen Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Sheri Gipson", + "OrganizationName": "OR - WHITE CITY MEDICAL CLINIC, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Heidi Oster, MD", + "OrganizationName": "FL - Gulf Coast Immediate Care Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hugo Women's Care", + "OrganizationName": "CT - Richard A Cagna, MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kathleen Tate, MD", + "OrganizationName": "Ascension Genesys Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Littleton Gynecology \u0026 Wellness", + "OrganizationName": "Ascension Michigan", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lone Tree OBGYN", + "OrganizationName": "Ascension Michigan Employer Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "My ObGyn", + "OrganizationName": "Ascension Providence Rochester", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OBGYN Center", + "OrganizationName": "Eastwood - to be determined", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Optimal Women's Health", + "OrganizationName": "MI - Ascension - Detroit/Flint", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Red Rocks Ob-Gyn", + "OrganizationName": "School Based Clinics - No Portal", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sky Divas OBGYN", + "OrganizationName": "St John Restricted", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Metro Obstetrics \u0026 Gynecology", + "OrganizationName": "FL - Comprehensive Pain Management Partn", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Stephanie Modica, RDN CDCES", + "OrganizationName": "NY - VITAL MEDICAL CARE AESTHETICS, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Colorado Women's Health Center", + "OrganizationName": "Angelique Barreto MDVIP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Group for Women", + "OrganizationName": "Arthrokinex Joint Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Vibrant Health of Colorado", + "OrganizationName": "Arthrokinex Regenerative Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Westside Women's Care", + "OrganizationName": "Barreto Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women's Health Care Associates", + "OrganizationName": "NGS-South", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Cardiothoracic and Vascular Surgeon", + "OrganizationName": "NextGen Sleep", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Brian Orr Pediatrics, LLC.", + "OrganizationName": "CA - Vista Complete Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Dr. Wynnshang C. Sun, M.D.", + "OrganizationName": "CA - Southern California Bone and Joint", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Dermatology \u0026 Skin Surgery Associat", + "OrganizationName": "TX - Dr. Matthew Thompson PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Bristol Pulmonology \u0026 Sleep Medici", + "OrganizationName": "VA - Arlington ENT Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Eduardo J Hidalgo MD", + "OrganizationName": "OH - G \u0026 I Kondray Mds Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Saint Peter's Healthcare System", + "OrganizationName": "KY - America's Foot Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - PS New Experience", + "OrganizationName": "GA - Pleasant Peds Care of Conyers LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - M. Elizabeth Latimer, M.D., PC", + "OrganizationName": "VA - Art \u0026 Science of OB/GYN P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Fitzmaurice Hand Institute, PLLC", + "OrganizationName": "MD - Dr. Jonathan Levin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Empire Cardiology, P.C.", + "OrganizationName": "GA - Commonwealth Primary Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Southern Ocean Pediatrics and Famil", + "OrganizationName": "MBH_MARQUETTE BEHAVIORAL HEALTH", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Center For Ear, Nose and Throat PC", + "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Gynecological Solutions", + "OrganizationName": "UP MEDICAL GROUP - MARQUETTE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Exalta Health", + "OrganizationName": "UP MEDICAL GROUP - BELL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Katy Pulmonary Associates", + "OrganizationName": "UP MEDICAL GROUP - PORTAGE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - MAUREEN COONEY D.O., P.C.", + "OrganizationName": "UP OCCUPATIONAL MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - GASTROENTEROLOGY CONSULTANTS, P.C.", + "OrganizationName": "CA - Dennis Jordanides, MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chattanooga Bariatrics", + "OrganizationName": "TX - First Family Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dalton Surgical", + "OrganizationName": "Dameron Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Dalton Surgical Group, P.C.", + "OrganizationName": "Dameron Occupational Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - JM Beams Inc", + "OrganizationName": "CA - HARMONY HEALTH MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Delmar Primary Care Associates Inc.", + "OrganizationName": "MD - Imelda P Cabalar MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - ALLEN D. DUMONT, M.D., P.C.", + "OrganizationName": "VA - NoVa Foot and Ankle PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Abraham's Mark Comprehensive Wellne", + "OrganizationName": "LA - David and Eldredge ENT Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Mt Auburn Professional Services", + "OrganizationName": "CO - Pediatric Gastroenterology of CO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - The Headache Center, PLLC", + "OrganizationName": "MS - Orange Grove Medical Specialties, P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Pinner Clinic, P.A.", + "OrganizationName": "West Coast Kidney Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Monarch Health, LLC", + "OrganizationName": "MS - Caring Hands Children's Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - First Choice Care", + "OrganizationName": "Austin Foot \u0026 Ankle Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Shavano Family Practice", + "OrganizationName": "Three Lakes Physical Therapy \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Meridian Internal Medicine and Prim", + "OrganizationName": "Epoch Vitality", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Althea L. Turk MD, PC dba Comprehen", + "OrganizationName": "New Horizons", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Stanley A Horst MD", + "OrganizationName": "Yoakum Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - W. Peyton Shirley MD", + "OrganizationName": "MI - Womens Excellence In OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Lana S. Beavers MD", + "OrganizationName": "NY - WESTERN NEW YORK TRUE CARE MEDICAL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Pulaski Surgery Clinic", + "OrganizationName": "VA - Luckay Doc PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Peachtree Medical Center", + "OrganizationName": "MD - Peninsula Orthopaedic Associates PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Coresmart, Inc.", + "OrganizationName": "Peninsula Orthopaedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CONRAD A FISCHER MDPA", + "OrganizationName": "NC - Diabetes Thyroid \u0026 Endocrinology Ce", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Spine Vue PLLC", + "OrganizationName": "GA - Health One Medical Group, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bedford Medical Group", + "OrganizationName": "CA - SD ALLERGY, ASTHMA \u0026 IMMUNOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Emmanuel Valery MD", + "OrganizationName": "SC - Eric J. Watson, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TEXAS MEDICAL \u0026 SURGICAL ASSOC.", + "OrganizationName": "NM - Jeffrey M Sauer DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Medical \u0026 Surgical Associates", + "OrganizationName": "MedNM Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Nitai Riegler MD", + "OrganizationName": "Sherif Pediatrics Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Caleel Medical Group, LLC", + "OrganizationName": "FL - Eduardo G. Romero M.D. PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Nisha Patel, DPM", + "OrganizationName": "NY - Ronald Solomon", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Eastern Regional Pain Specialists P", + "OrganizationName": "WA - Everett Urological,PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Full Circle Health Care, LLC", + "OrganizationName": "NC - Ahoskie Adult Medicine Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Gerald G Fette MD", + "OrganizationName": "WV - Mark L. Douglas, DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Capital Endocrine \u0026 Diabetes", + "OrganizationName": "DC - Adelson \u0026 Ginsberg MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Bhargava \u0026 Bhargava Mds", + "OrganizationName": "MS - Pioneer Health Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Northeast Kansas GI Consultants, P.", + "OrganizationName": "Burgaw Medical Center \u0026 Hampstead Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Holy Family Healthcare", + "OrganizationName": "AZ - East Valley Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Holy Family Healthcare", + "OrganizationName": "PA - That Foot Doctor, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Maria Dunton, DO", + "OrganizationName": "NC - Mary J. Forbes, M.D., PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Strand Endocrinology", + "OrganizationName": "OH - Dr M E Broadstone-Gaeke, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Drs. Brenner \u0026 Mitnick, P.A", + "OrganizationName": "BCPA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Women's Integrated Healthcare", + "OrganizationName": "VA - Adult \u0026 Pediatric Medical Associate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Longwood Pediatrics", + "OrganizationName": "HI - Alii Bariatric Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Ivette Valle MD", + "OrganizationName": "OH - Orange Place Enterprise", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Precision Surgical LLC", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Almudallal", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pedro Espat", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Imonugo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Roberta Rose", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Morse", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Bay Area Orthopedic Surgery", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Raugh", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Neurology \u0026 Pain Clinic", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Soltani", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Peter R Preganz, Jr, MD, PA", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Tupper", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - The Listening Doctor", + "OrganizationName": "TX - April E Lopez FNP-BC, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Premier Vein \u0026 Vascular Center,PLLC", + "OrganizationName": "TN - Urology and Urologic Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Family Clinic - Dr. Jennifer Gwozdz", + "OrganizationName": "AZ - YOUR HEALTH HOME PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Austin Vein \u0026 Vascular Clinic", + "OrganizationName": "Eastport Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHRISTUS Hospital of San Antonio", + "OrganizationName": "ME - Eastport Health Care, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GADSDEN HMA PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "TX - Bruce Alan Barker DO, MBA, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GADSDEN HMA PHYSICIAN MGT PSYCHIATRY", + "OrganizationName": "CA - David S Gans MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HARTSVILLE MEDICAL GROUP LLC", + "OrganizationName": "CO - Sunflower Pediatrics PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Allergy/Asthma Center Colorado", + "OrganizationName": "GA - Lanier Adult Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Robert B. Kohen, M.D.", + "OrganizationName": "SC - Carolina Musculoskeletal Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - HIGH DESERT THERAPY ASSOCIATES, INC", + "OrganizationName": "CT - Stamford Gastroenterology, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - OAK BROOK X-RAY AND IMAGING, INC.", + "OrganizationName": "TX - Chukwuma Osuagwu MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Professionals for Women's Health", + "OrganizationName": "GA - Wingard Primary Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Midwest Pain Clinic", + "OrganizationName": "FL - Orthopedic Specialty Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Heart and Vascular Care", + "OrganizationName": "TN - Mid-South Urgent Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Obgyn Consultants of Fairfax", + "OrganizationName": "CO - Rocky Mountain Pulmonary", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Neurology of Sugar Land PLLC", + "OrganizationName": "TX - Burleson Old Town Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Houston Southwest Colon and Rectal", + "OrganizationName": "NJ - Top Notch Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - MercyMed of Columbus, INC", + "OrganizationName": "MA - The Nirmel Neurological Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Metro Foot Specialists", + "OrganizationName": "VA - Neurosurgical Specialists Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Family Medicine Associates Of Fayet", + "OrganizationName": "GA - Pandya Medical Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - South Strand Cardiology, LLC", + "OrganizationName": "ACM Connect", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Wright Family Practice", + "OrganizationName": "ACM Kohl's Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - LG Solutions C.P.", + "OrganizationName": "IL - K MEDICAL, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Hamner's Office", + "OrganizationName": "CO - Mountain Sky Cardiology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Intellimedicine, PA", + "OrganizationName": "OK - Oklahoma Spine\u0026Musculoskeletal PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Great Lakes Urgent Care", + "OrganizationName": "FL - Center for Quality Pain Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Women's Healthcare Center Of GA", + "OrganizationName": "GA - Calhoun OB/GYN Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - PAUL S. COHEN, M.D., P.C.", + "OrganizationName": "ME - Calais Regional Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Lesly Honore MD PC", + "OrganizationName": "DE - UMA CHATTERJEE, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - QHC PF Centre HBP", + "OrganizationName": "IN - Louisville Geriatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Cal-Pep", + "OrganizationName": "Louisville Geriatric Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Anahat Kaur Sandhu, MD, Inc.", + "OrganizationName": "M Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Vincent D. Mallory M.D.", + "OrganizationName": "SC - Orangeburg Primary", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - SOUTHERN SURGICAL ASSOCIATES, P.A.", + "OrganizationName": "CA - Singer \u0026 Chiang, Medical Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Red Wheelbarrow Pediatrics", + "OrganizationName": "Ascension Medical Group Seton", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Womens Healthcare of Acadiana LLC", + "OrganizationName": "Austin Pediatric Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - The Neurology Clinic, P.A.", + "OrganizationName": "MI - Allergy Asthma \u0026 Pulmonary Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Flora Medical Clinic, PLLC", + "OrganizationName": "ARVIND K GUPTA MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Body \u0026 Mind Works", + "OrganizationName": "Surgical Associates of Milford", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Ophthalmology and Neuro-ophthalmolo", + "OrganizationName": "MI - Pillay Internal Medicine Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - GIRDWOOD HEALTH CLINIC, INC.", + "OrganizationName": "CA - San Jose Orthopedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Yen Shipley and Dr. Mesnier", + "OrganizationName": "OR - R. Walter Hunter, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Foot Health and Wellness, LLC", + "OrganizationName": "Three Rivers Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Alefia \u0026 Ashfaq Tapia MD", + "OrganizationName": "West Michigan Ear Nose \u0026 Throat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Cumberland Women's Health Center", + "OrganizationName": "GA - MedNow, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kelly Goodman Group", + "OrganizationName": "ME - Village Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DE - Stuart Septimus MD", + "OrganizationName": "MA - WESTFORD VEIN \u0026 AESTHETIC SOLUTIONS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - MMGL, LLC DBA Five Star Medical Cli", + "OrganizationName": "GA - New Image Medical Aesthetics \u0026 Well", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Floyd Reed MD", + "OrganizationName": "AZ - Desert Family Physicians, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Greenwood OB/GYN", + "OrganizationName": "CA - Eric J. Meinhardt, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Bridgewater Women Center", + "OrganizationName": "UT - MEDICRUISER ONSITE CARE, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Clarksville Pulmonary/Critical", + "OrganizationName": "CT - The Healthy Child, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Neurology Center of Virginia, LLC", + "OrganizationName": "GA - North Fulton OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - GVSU Family Health Center", + "OrganizationName": "AK - Kodiak Island Ambulatory Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Deepa Agarwal, M.D., Pediatrics, A", + "OrganizationName": "AZ - FOOTHILLS NEUROLOGY, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Do-Eun Lee, MD Inc", + "OrganizationName": "OH - Agility Foot \u0026 Ankle Specialty Cent", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Conejo Pain Specialist", + "OrganizationName": "MA - Norwood Podiatry Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Dothan Psychiatric PC", + "OrganizationName": "NJ - Sandra J. Greco, MD, FACOG, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Care Coordination", + "OrganizationName": "OR - Sellwood Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carlisle Medical Clinic", + "OrganizationName": "Carolina Health Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Practice Associates Quick Care", + "OrganizationName": "MA - Dr. Mark Su MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Practice Associates of Sullivan County", + "OrganizationName": "Direct Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - SULLIVAN COUNTY COMMUNITY HOSPITAL", + "OrganizationName": "NY - Dr. Chista Safajou", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lakeside Family Medical", + "OrganizationName": "OK - Renee J Russell MD, INC, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SCCH Ortho Clinic", + "OrganizationName": "IL - KISHWAUKEE PHYSICIAN GROUP, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sullivan Foot \u0026 Ankle Center", + "OrganizationName": "FL - Center for Health \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sullivan Workforce Health \u0026 Wellness Clinic", + "OrganizationName": "TN - Steel Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sunrise Health and Wellness", + "OrganizationName": "NJ - PCN MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tommy Wolfe Wellness Center", + "OrganizationName": "NY - Central NY Surgical Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women's Health Center", + "OrganizationName": "MA - Kapasi Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Lehigh Pulmonary Associates, Inc.", + "OrganizationName": "Forest County Potawatomi Health \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Neeraj Manchanda MD", + "OrganizationName": "Dr. David Ellliot", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Cabot Foot Clinic", + "OrganizationName": "G. Michael Lopez, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Healing Unleashed Health Services L", + "OrganizationName": "OR - Neal A Dunitz, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Palma Sola Medical Associates", + "OrganizationName": "FL - Jaimela J. Dulaney", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Matthew J Malta MD", + "OrganizationName": "LA - Triumphant Health Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Omar Murad, MD", + "OrganizationName": "LA - MED House Calls, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Erick A Kimmerling D.O.", + "OrganizationName": "AL - Shoals Orthopedics \u0026 Sports Medicin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Total Health Medical of the Desert", + "OrganizationName": "NJ - Martin J Scott DO \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - DuPage Neurological Associates", + "OrganizationName": "VA - Suffolk Surgical Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Cecilio M Cabansag MD, Inc.", + "OrganizationName": "CA - Hayward Foot \u0026 Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - North Florida Family Medicine", + "OrganizationName": "WV - Breton L Morgan MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - NORFOLK COUNTY MEDICAL ASSOCIATES,", + "OrganizationName": "FL - Christopher J Calcagni DPM PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - General Surgery Associates LLC", + "OrganizationName": "NC - Charles J. DePaolo, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - The Craniofacial Center", + "OrganizationName": "NY - Pang Lay Kooi MDPC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ALABAMA PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "VT - Mary Stanley MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "Orthopedic Services \u0026 Sports Medicine/Peter A Pizzarello, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHESTER MEDICAL GROUP LLC", + "OrganizationName": "OH - WELCH URGENT CARE \u0026 WELLNESS CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "EAST GEORGIA PHYSICIAN MGMNT LLC", + "OrganizationName": "OR - Laurelhurst PT Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GEORGIA PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "EmergeOrtho", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MONROE PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "NC - EmergeOrtho", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "STATESBORO PHYSICIAN MANAGEMENT LLC", + "OrganizationName": "AZ - Cochise Health and Wellness, PLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KENNETT PHYS MGMT LLC", + "OrganizationName": "Peachtree Occupational Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KENNETT PHYS MGMT PSYCH LLC", + "OrganizationName": "Peachtree Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KENNETT RHC LLC", + "OrganizationName": "NC - Amara Pain \u0026 Spine PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT LLC", + "OrganizationName": "MS - Hickory Flat Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT PSYCH LLC", + "OrganizationName": "GA - Phoebe Putney Health Systems", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "POPLAR BLUFF RHC LLC", + "OrganizationName": "Phoebe Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Troy Family Medicine, PC", + "OrganizationName": "IN - Monroe Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - MARIA STEIN FAMILY PRACTICE INC.", + "OrganizationName": "Monroe Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Donald H Bernstein MD", + "OrganizationName": "VA - Armstrong, Heyrana and Associates,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Charles D Hanshaw DO Inc", + "OrganizationName": "MA - America's Vein Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Wanda M. Boote, M.D., P.A.", + "OrganizationName": "CA - ERIC G. LEVY MEDICAL CORPORATION", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Grand Health Care Consulting, LLC", + "OrganizationName": "CO - Western Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Allergy and Asthma Center of Wester", + "OrganizationName": "Western Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Vivian Women's Center", + "OrganizationName": "FL - Florida Elite Medical Care, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Hubbard Pediatric Group", + "OrganizationName": "AZ - Generations House Call Providers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - McAreh Medical P.C.", + "OrganizationName": "MI - Catherine's Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - SKYPOINT MEDICAL CENTER S.C.", + "OrganizationName": "CA - Steven K Shoemaker, DPM \u0026 Assoc. IN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - MILLER HEALTH AND WELLNESS", + "OrganizationName": "TX - North Austin Foot and Ankle Institu", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Francisco M Vazquez MD", + "OrganizationName": "TX - Clinic of East End Association, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Midwifery Matters", + "OrganizationName": "NY - John T Mather Memorial", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Attention Deficit Disorder", + "OrganizationName": "FL - Brain \u0026 Spine Institute Port Orange", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Femhealth, P.A.", + "OrganizationName": "FL - Spine \u0026 Pain Medicine Center, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - ALLIANCE MEDICAL CLINIC, LLC", + "OrganizationName": "Borinquen Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Chicago Neurological Services, Ltd.", + "OrganizationName": "FL - Borinquen Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Invogue Total Women's Healthcare PL", + "OrganizationName": "NC - Covenant Pediatrics, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ADULT MEDICAL SOLUTIONS, PA", + "OrganizationName": "OH - Dr. JB Winters", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BROWNWOOD SPECIALTY GROUP PA", + "OrganizationName": "PA - TriState Colon and Rectal Associate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Women's Wellness Place", + "OrganizationName": "TX - Joseph F. McWherter, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Pediatrics of Bartlesville", + "OrganizationName": "Clear Creek OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - John T. Shaw MD", + "OrganizationName": "Sacred Heart Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Care Management Group", + "OrganizationName": "CT - Housatonic Valley Podiatric Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Prime Internal Medicine, PA", + "OrganizationName": "CT - Steven L. Saunders, M.D., LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MAYO HEALTH SYSTEMS", + "OrganizationName": "WA - Mattawa Community Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mayo Medical Clinic", + "OrganizationName": "MA - Craig Jones, MD ENT Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Platinum Healthcare", + "OrganizationName": "MI - Advanced Gynecology Specialists of", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - MONTGOMERY PEDIATRICS, INC.", + "OrganizationName": "Ambulatory Infusion Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - ADVANCE FAMILY AND SPORTS MEDICINE", + "OrganizationName": "Anna Shaw Children's Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Integrity Wellness", + "OrganizationName": "HMC The Full Circle", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Charles S Watras MD", + "OrganizationName": "Hamilton Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Abdul Kadir MD", + "OrganizationName": "Hamilton Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - CAROLINA SPORTS AND SPINE, P.A.", + "OrganizationName": "NV - SUNSET SURGERY CENTER, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Donna M Duran MD", + "OrganizationName": "Brevard Orthopaedic Spine \u0026 Pain Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Luke Hunter, DPM", + "OrganizationName": "FL - First Choice Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Diamond Gastroenterology", + "OrganizationName": "First Choice Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Packard Health, Inc.", + "OrganizationName": "NY - Bradley A. Connor, M.D., PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Endoscopic Solutions", + "OrganizationName": "HSNHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - LIVE OAK MEDICAL ASSOCIATES, PA", + "OrganizationName": "Teen Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Northwest Georgia Surgical Associat", + "OrganizationName": "OK - STAThealth Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Mountain Laurel Internal Medicine,", + "OrganizationName": "VA - Bradlee Family Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Behavioral Health Associates", + "OrganizationName": "TX - Lakeview ENT, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - CENTRO DE SALUD FAMILIAR", + "OrganizationName": "VA - Robert A Nussbaum MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - RENAISSANCE FAMILY MEDICINE OF WELL", + "OrganizationName": "Center Pointe Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IA - UnityPoint Marshalltown", + "OrganizationName": "NJ - Gregory J Tracey MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Valley Medical Associates Springfie", + "OrganizationName": "CT - Leslie B Lindenberg MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Medical Corner", + "OrganizationName": "CA - J. Margo Jaffe Orr, M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Cronin Medical Group", + "OrganizationName": "IN - Neurological Care of Indiana, Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Mark Paris, MD", + "OrganizationName": "IL - STRIEDINGER MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - COASTAL MAINE INTERNAL MEDICINE, PC", + "OrganizationName": "CA - Tracy L. Basso, DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Wareham Cardiology PLLC", + "OrganizationName": "IL - CAM Medical Group, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "International Medical Associates", + "OrganizationName": "TN - Reliable Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Logan Square Medical Institute", + "OrganizationName": "WA - C\u0026C Medical Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Podiatry Group of Annapolis Ambulatory Surgical Center", + "OrganizationName": "LA - Spinecare Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Podiatry Group of Annapolis, PA", + "OrganizationName": "Harbor View Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - ADMA Primary Care, PC", + "OrganizationName": "Aspire for Women Obstetrics and Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Medi-First Medical Center, P.L.L.C", + "OrganizationName": "Associates in Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - NORTH MOUNTAIN FAMILY MEDICINE, PLL", + "OrganizationName": "Cherry Hills Midwifery, Obstetrics \u0026 Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Jim Francois, DPM, PT, PA", + "OrganizationName": "Dr. Sheri Gipson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Premier Medical Group", + "OrganizationName": "Heidi Oster, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Colorectal Clinic P.A.", + "OrganizationName": "Hugo Women's Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Medici Atlanta Spine and Ortho", + "OrganizationName": "Kathleen Tate, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Medici Surgical Center", + "OrganizationName": "Littleton Gynecology \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Coastal Podiatry, LLC", + "OrganizationName": "Lone Tree OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Northside Pediatric Associates PC", + "OrganizationName": "My ObGyn", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - RIVERVIEW PEDIATRICS", + "OrganizationName": "OBGYN Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sandra Torres MD", + "OrganizationName": "Optimal Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Janice R Powells MD,PA , DBA THE CH", + "OrganizationName": "Red Rocks Ob-Gyn", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - South Valley Internal Medicine, P.C", + "OrganizationName": "Sky Divas OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - NORTH VALLEY INTERNAL MEDICINE, P.C", + "OrganizationName": "South Metro Obstetrics \u0026 Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - WESTIN MEDICAL HEALTH P.C.", + "OrganizationName": "Stephanie Modica, RDN CDCES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Liberty Women OB/GYN PC", + "OrganizationName": "The Colorado Women's Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Michael S. Greenfield, MD", + "OrganizationName": "The Group for Women", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Stephen H Goldberger MD FACS", + "OrganizationName": "Vibrant Health of Colorado", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Mountainview Skin Care", + "OrganizationName": "Westside Women's Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - The Knighton Center, PLLC", + "OrganizationName": "Women's Health Care Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - LI Urgent Care", + "OrganizationName": "TX - Cardiothoracic and Vascular Surgeon", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "St. Vincent's Medical Group", + "OrganizationName": "MA - Brian Orr Pediatrics, LLC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - ARASH BERELIANI, MD, A MEDICAL CORP", + "OrganizationName": "CA - Dr. Wynnshang C. Sun, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Women's Health Group", + "OrganizationName": "IL - Dermatology \u0026 Skin Surgery Associat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - East Norriton Women's Health Care", + "OrganizationName": "MA - Bristol Pulmonology \u0026 Sleep Medici", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - David Patterson, D.O., P.C.", + "OrganizationName": "FL - Eduardo J Hidalgo MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Advantia Health I", + "OrganizationName": "Saint Peter's Healthcare System", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Maryland Physicians Edge PC", + "OrganizationName": "MA - PS New Experience", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Affiliates In Woman's Care", + "OrganizationName": "MD - M. Elizabeth Latimer, M.D., PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Cardio Assc of Greater Waterbury", + "OrganizationName": "AZ - Fitzmaurice Hand Institute, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - East Greenwich Pediatrics", + "OrganizationName": "NY - Empire Cardiology, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CharterCARE Medical Associates", + "OrganizationName": "NJ - Southern Ocean Pediatrics and Famil", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "New University Medical Group", + "OrganizationName": "MI - Center For Ear, Nose and Throat PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Our Lady Of Fatima Hospital", + "OrganizationName": "NJ - Gynecological Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Roger Williams Medical Center", + "OrganizationName": "MI - Exalta Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Donna J. Tal Md, PC", + "OrganizationName": "TX - Katy Pulmonary Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Hand Center of Oregon, Inc.", + "OrganizationName": "NY - MAUREEN COONEY D.O., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Centers for Advanced Orthopaedics OrthoMaryland Division", + "OrganizationName": "CT - GASTROENTEROLOGY CONSULTANTS, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Avante Medical Center", + "OrganizationName": "Chattanooga Bariatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Saint Clair Allergy And Asthma Cent", + "OrganizationName": "Dalton Surgical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Employee Health", + "OrganizationName": "GA - Dalton Surgical Group, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Physicians at Valley View", + "OrganizationName": "CA - JM Beams Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Psychiatry", + "OrganizationName": "MO - Delmar Primary Care Associates Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Sander Orthopaedic and Sports Med", + "OrganizationName": "MI - ALLEN D. DUMONT, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Paris Regional Family Clinic", + "OrganizationName": "IL - Abraham's Mark Comprehensive Wellne", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Saheli OBGYN", + "OrganizationName": "MA - Mt Auburn Professional Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - SOUTHWEST DESERT CARDIOLOGY, P.C.", + "OrganizationName": "MS - The Headache Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Foothills Family Medicine", + "OrganizationName": "SC - Pinner Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Blairsville Internal Medicine", + "OrganizationName": "MI - Monarch Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GLENN P. ROTHHAAS, D.O", + "OrganizationName": "FL - First Choice Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ROBERT L KALB, M.D.", + "OrganizationName": "TX - Shavano Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Med Imaging Care, INC dba West LA D", + "OrganizationName": "GA - Meridian Internal Medicine and Prim", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Pulmonary \u0026 Sleep Medicine, PC", + "OrganizationName": "GA - Althea L. Turk MD, PC dba Comprehen", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - MOLANI MEDICAL GROUP, A PROFESSIONA", + "OrganizationName": "OK - Stanley A Horst MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Main Street Medical", + "OrganizationName": "AL - W. Peyton Shirley MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Riversbend Enon Children's Clinic,", + "OrganizationName": "TN - Lana S. Beavers MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Farhat Medical Clinic", + "OrganizationName": "AR - Pulaski Surgery Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Ridge Manor Family Med", + "OrganizationName": "GA - Peachtree Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Annapolis Asthma, Pulmonary and Sleep Specialists", + "OrganizationName": "FL - Coresmart, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Ascension - Alabama", + "OrganizationName": "TX - CONRAD A FISCHER MDPA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension St. Vincent's", + "OrganizationName": "TX - Spine Vue PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Glen Guillet MD", + "OrganizationName": "Bedford Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Van Amburg Surgery Care", + "OrganizationName": "Emmanuel Valery MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Womankind Health \u0026 Wellness Center", + "OrganizationName": "TEXAS MEDICAL \u0026 SURGICAL ASSOC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Elite Primary Care", + "OrganizationName": "TX - Texas Medical \u0026 Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Las Palmas OB/GYN, INC", + "OrganizationName": "CT - Nitai Riegler MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Premier Ob Gyn Napa Inc.", + "OrganizationName": "IL - Caleel Medical Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Matlock Internal Medicine", + "OrganizationName": "CA - Nisha Patel, DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Center For Spine And Orthopedics PC", + "OrganizationName": "NC - Eastern Regional Pain Specialists P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - North Hills Internal \u0026 Integrative", + "OrganizationName": "ME - Full Circle Health Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - PCRM Clinic, dba: Barnard Medical C", + "OrganizationName": "CT - Gerald G Fette MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Neal A. Sckolnick, M.D., P.C.", + "OrganizationName": "TX - Capital Endocrine \u0026 Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Pediatric Wellness Center", + "OrganizationName": "OK - Bhargava \u0026 Bhargava Mds", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Edward W Hartzler MD Inc.,PS", + "OrganizationName": "KS - Northeast Kansas GI Consultants, P.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Michael G. Neret", + "OrganizationName": "Holy Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Margy Batson", + "OrganizationName": "MI - Holy Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NFS 1", + "OrganizationName": "CA - Maria Dunton, DO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Sigecaps Health, LLC- EMG - Collect", + "OrganizationName": "SC - Strand Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Advanced Internal Medicine", + "OrganizationName": "MD - Drs. Brenner \u0026 Mitnick, P.A", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Airport Playa Women's Med Grp", + "OrganizationName": "TX - Women's Integrated Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - NORTHERN CALIFORNIA ORTHOPAEDIC", + "OrganizationName": "FL - Longwood Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - ELLEN LIN MD PA DBA ADVANCED SPINE", + "OrganizationName": "FL - Ivette Valle MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Joseph Tulagan MD", + "OrganizationName": "AZ - Precision Surgical LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Nicholas Rizzo MD", + "OrganizationName": "Pedro Espat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - KANSAS KIDS HEART CENTER, P.A.", + "OrganizationName": "Roberta Rose", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - The Center for Men's Health", + "OrganizationName": "CA - Bay Area Orthopedic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Durrani MD and Associates", + "OrganizationName": "SC - Neurology \u0026 Pain Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lei Chu M.D. Urology", + "OrganizationName": "FL - Peter R Preganz, Jr, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Durrani MD \u0026 Associates", + "OrganizationName": "FL - The Listening Doctor", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ME - Dr. Richard Wilkins", + "OrganizationName": "TX - Premier Vein \u0026 Vascular Center,PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HI - DONNA JEAN MAH MD INC.", + "OrganizationName": "TX - Family Clinic - Dr. Jennifer Gwozdz", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - O'Meara Rosado DPM PLLC dba Foot a", + "OrganizationName": "TX - Austin Vein \u0026 Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Perry Memorial Hospital Authority", + "OrganizationName": "CHRISTUS Hospital of San Antonio", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hunt Regional Medical Partners", + "OrganizationName": "HARTSVILLE MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Hunt Regional Medical Partners", + "OrganizationName": "CO - Allergy/Asthma Center Colorado", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - Hurricane Family Practice Clinic", + "OrganizationName": "MI - Robert B. Kohen, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - ROWE Network PLLC", + "OrganizationName": "OR - HIGH DESERT THERAPY ASSOCIATES, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Ram Surendran, MD", + "OrganizationName": "IL - OAK BROOK X-RAY AND IMAGING, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Tots To Teens, LLC DBA Glencoe Pedi", + "OrganizationName": "OH - Professionals for Women's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Carewell Medical Associates, PC", + "OrganizationName": "Midwest Pain Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - San Antonio Family Physicians", + "OrganizationName": "VA - Heart and Vascular Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Dr. John's Quick Med, LLC", + "OrganizationName": "VA - Obgyn Consultants of Fairfax", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Pediatric ENT of South West Florida", + "OrganizationName": "TX - Neurology of Sugar Land PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Sacred Heart Medical Office PA", + "OrganizationName": "TX - Houston Southwest Colon and Rectal", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Community Nephrology Services, Inc.", + "OrganizationName": "GA - MercyMed of Columbus, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Dr. Leslie A. Smith, MD", + "OrganizationName": "MO - Metro Foot Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - United Medical Doctors", + "OrganizationName": "NY - Family Medicine Associates Of Fayet", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Memphis Surgical Specialists", + "OrganizationName": "SC - South Strand Cardiology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - CHIRP Master", + "OrganizationName": "IN - Wright Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Treasure Valley Family Medicine", + "OrganizationName": "TX - LG Solutions C.P.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Diabetes and Endocrine Care of Long", + "OrganizationName": "Dr. Hamner's Office", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - All Star Pediatric Care", + "OrganizationName": "TX - Intellimedicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Brooklyn Heart", + "OrganizationName": "MI - Great Lakes Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - NORTHWEST NEUROSCIENCES, PLLC", + "OrganizationName": "GA - Women's Healthcare Center Of GA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Jackson Hospital", + "OrganizationName": "NY - PAUL S. COHEN, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Jackson Clinic", + "OrganizationName": "NY - Lesly Honore MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Jackson Hospitalists Group", + "OrganizationName": "AL - QHC PF Centre HBP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Full Spectrum Health Center", + "OrganizationName": "CA - Cal-Pep", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Ross Clinic", + "OrganizationName": "CA - Anahat Kaur Sandhu, MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Clinton Memorial Physician Services", + "OrganizationName": "LA - Vincent D. Mallory M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - AUDREY J. WOOLRICH, M.D., P.C.", + "OrganizationName": "NC - SOUTHERN SURGICAL ASSOCIATES, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Jeffrey Von Hill DO PA", + "OrganizationName": "NJ - Red Wheelbarrow Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Midlands Orthopaedics, P.A.", + "OrganizationName": "LA - Womens Healthcare of Acadiana LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HI - Allan Wang, MD, LLC", + "OrganizationName": "TX - The Neurology Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - San Diego Sports Medicine \u0026 Orthopa", + "OrganizationName": "TX - Flora Medical Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - ROBERT LANCE CHARET MD, INC.", + "OrganizationName": "FL - Body \u0026 Mind Works", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cahaba Orthopedics", + "OrganizationName": "NJ - Ophthalmology and Neuro-ophthalmolo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Thomas \u0026 Hunter MD", + "OrganizationName": "AK - GIRDWOOD HEALTH CLINIC, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Aegis Anesthesia ParkHill Affiliate", + "OrganizationName": "Dr. Yen Shipley and Dr. Mesnier", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Clara Andrews, M.D. Parkhill Affiliate", + "OrganizationName": "OH - Foot Health and Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "EHI Surgery Center of Austin", + "OrganizationName": "TX - Alefia \u0026 Ashfaq Tapia MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ENT Care For Kids, PA ParkHill Affiliate", + "OrganizationName": "GA - Cumberland Women's Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Forest Lane Pediatrics", + "OrganizationName": "Kelly Goodman Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GROUP SURGICAL PARTNERS INTEGRATED LLC", + "OrganizationName": "DE - Stuart Septimus MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Central Anesthesia Consultants ParkHill Affiliate", + "OrganizationName": "AZ - MMGL, LLC DBA Five Star Medical Cli", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PARKHILL ASC", + "OrganizationName": "TN - Floyd Reed MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PARKHILL DALLAS ASC", + "OrganizationName": "OK - Greenwood OB/GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PARKHILL DALLAS IMAGING", + "OrganizationName": "FL - Bridgewater Women Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PSN FW HOLDCO LLC", + "OrganizationName": "TN - Clarksville Pulmonary/Critical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Park Hill Surgery Center", + "OrganizationName": "VA - Neurology Center of Virginia, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ParkHill Medical CBO", + "OrganizationName": "MI - GVSU Family Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Parkhill Imaging Addison", + "OrganizationName": "AZ - Deepa Agarwal, M.D., Pediatrics, A", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Parkhill Imaging Clearfork", + "OrganizationName": "CA - Do-Eun Lee, MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Personalized Women's Healthcare ParkHill Affiliate", + "OrganizationName": "CA - Conejo Pain Specialist", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Richard C Kaye MD ParkHill Affiliate", + "OrganizationName": "AL - Dothan Psychiatric PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Parkhill Health", + "OrganizationName": "Care Coordination", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Texas Intensivists Network ParkHill Affiliate", + "OrganizationName": "Carlisle Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Vanguard Anesthesia", + "OrganizationName": "Family Practice Associates Quick Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Varsity Orthopedics ParkHill Affiliate", + "OrganizationName": "Family Practice Associates of Sullivan County", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Prem P. Manchanda, MD, PC", + "OrganizationName": "IN - SULLIVAN COUNTY COMMUNITY HOSPITAL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Portsmouth Pediatrics PC", + "OrganizationName": "Lakeside Family Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Midwest Allergy Sinus Asthma, S.C.", + "OrganizationName": "SCCH Ortho Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - East Tennessee Primary Care Inc", + "OrganizationName": "Sullivan Foot \u0026 Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Sun City Kidney, PA", + "OrganizationName": "Sullivan Workforce Health \u0026 Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Northwest OB/GYN Associates", + "OrganizationName": "Sunrise Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sebastopol Family Health", + "OrganizationName": "Tommy Wolfe Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "David Fichman MD", + "OrganizationName": "Women's Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mollie Charon MD", + "OrganizationName": "FL - Lehigh Pulmonary Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Rolando Uykimpang, M.D., Inc.", + "OrganizationName": "TX - Neeraj Manchanda MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Thompson Family Medical Assoc", + "OrganizationName": "AR - Cabot Foot Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Keith Kidd NP", + "OrganizationName": "CO - Healing Unleashed Health Services L", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Breast Care Specialists, P", + "OrganizationName": "FL - Palma Sola Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - INNOVATIVE UROLOGY PRACTICE OF NEW", + "OrganizationName": "MD - Matthew J Malta MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Advanced Foot and Ankle Centers of", + "OrganizationName": "CA - Omar Murad, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - OB/GYN Associates West Hartford", + "OrganizationName": "GA - Erick A Kimmerling D.O.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Robert Auton, MD", + "OrganizationName": "CA - Total Health Medical of the Desert", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "UT - UROLOGY ASSOCIATES, L.L.C.", + "OrganizationName": "IL - DuPage Neurological Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Eye One Surgical Associates", + "OrganizationName": "CA - Cecilio M Cabansag MD, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Fitchburg Pediatrics", + "OrganizationName": "FL - North Florida Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Pediatric \u0026 Adolescent Medicine", + "OrganizationName": "MA - NORFOLK COUNTY MEDICAL ASSOCIATES,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Comprehensive Clinical Services", + "OrganizationName": "NE - General Surgery Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Murray Medical Associates Clinical Psychology", + "OrganizationName": "TX - The Craniofacial Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Murray Pediatrics", + "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Murray Psychiatric Associates", + "OrganizationName": "Cardiovascular Institute of Georgia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Murray-Calloway County Hospital", + "OrganizationName": "Cedar Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Occupational Medicine at MCCH", + "OrganizationName": "East Georgia Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Lincoln Med Education Partnership", + "OrganizationName": "East Georgia Internal Medicine and Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - East Metro Family Medical Clinic, P", + "OrganizationName": "East Georgia Medical \u0026 Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Torpey Family Medicine", + "OrganizationName": "East Georgia Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Advanced Geriatrics \u0026 Primary Care,", + "OrganizationName": "East Georgia Primary Care \u0026 Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Jackson Neuroscience Center", + "OrganizationName": "East Georgia Regional Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Fallbrook Adult Medicine", + "OrganizationName": "EastGeorgia Neurology \u0026 Neurodiagnostics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Franklin Clinic Corp", + "OrganizationName": "Internal Medicine Associates of East Georgia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Cy-Fair Foot Care", + "OrganizationName": "Porter Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - John Scribner", + "OrganizationName": "Statesboro Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Bay Arthritis Institute Inc.", + "OrganizationName": "Twin City Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Metro Rheumatology, PLLC", + "OrganizationName": "Bloomfield Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - SW Florida Regional Medical Center", + "OrganizationName": "Bluff Sports Center \u0026 Orthopedic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Tri-Town Podiatry", + "OrganizationName": "Bluff Sports Medicine \u0026 Orthopedic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mountain Valley Orthopedics", + "OrganizationName": "Cardiovascular Institute of Southern Missouri", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Christine A. Phillips MD", + "OrganizationName": "Dexter Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Angelica Ramirez MD", + "OrganizationName": "Malden Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Family Medical Center", + "OrganizationName": "Ozark Medical Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Family First Care Clinic", + "OrganizationName": "Piedmont Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Robert J Mirabile, MD", + "OrganizationName": "Poplar Bluff Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - 910 Rapid Care, LLC", + "OrganizationName": "Poplar Bluff Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - General Surgical Associates, Inc.", + "OrganizationName": "Poplar Bluff Regional Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Central Coast Neurological Surgery", + "OrganizationName": "Poplar Bluff Regional Medical Center – North", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - LBMC_Andalusia", + "OrganizationName": "Poplar Bluff Regional Medical Center – South", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Grace Family Medical Practice", + "OrganizationName": "Puxico Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - A to Z Primary Care, P.C.", + "OrganizationName": "Regional Physician Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - John R. Wanamaker MD PC", + "OrganizationName": "AL - Troy Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Edwin Walker Medical Practice", + "OrganizationName": "OH - MARIA STEIN FAMILY PRACTICE INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - David N Feldman MD LLC", + "OrganizationName": "NY - Donald H Bernstein MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Health Express Urgent Care Centers", + "OrganizationName": "OH - Charles D Hanshaw DO Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Women's Health Institute", + "OrganizationName": "FL - Wanda M. Boote, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Walter J Lee MD", + "OrganizationName": "FL - Grand Health Care Consulting, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Permian Gastroenterology Associates", + "OrganizationName": "CO - Allergy and Asthma Center of Wester", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SUNSHINE PERINATOLOGY", + "OrganizationName": "IL - Vivian Women's Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sunshine Obstetric", + "OrganizationName": "GA - Hubbard Pediatric Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Richard A Stanley DPM", + "OrganizationName": "NJ - McAreh Medical P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Anthony M Auriemma MD, S.C.", + "OrganizationName": "IL - SKYPOINT MEDICAL CENTER S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Scott Elsbree MD", + "OrganizationName": "OK - MILLER HEALTH AND WELLNESS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Associates In Plastic Surgery", + "OrganizationName": "FL - Francisco M Vazquez MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Newton Neurology Assoc, P.C.", + "OrganizationName": "MI - Midwifery Matters", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bella Health + Wellness", + "OrganizationName": "WA - Attention Deficit Disorder", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Maryland Brain \u0026 Spine", + "OrganizationName": "SC - Femhealth, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The NEW Progam", + "OrganizationName": "AZ - ALLIANCE MEDICAL CLINIC, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Arnold S Kremer DO A Professional C", + "OrganizationName": "IL - Chicago Neurological Services, Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - South Texas Spinal Clinic, PA", + "OrganizationName": "TX - Invogue Total Women's Healthcare PL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Access Endocrinology", + "OrganizationName": "ADULT MEDICAL SOLUTIONS, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Paul K Ho MD", + "OrganizationName": "BROWNWOOD SPECIALTY GROUP PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Julia Riftine MD Obstetrics and Gyn", + "OrganizationName": "NY - Women's Wellness Place", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CUCUMBER WELLNESS, INC.", + "OrganizationName": "OK - Pediatrics of Bartlesville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Happier Living", + "OrganizationName": "TN - John T. Shaw MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mellow Medical Inc A Professional Corporation", + "OrganizationName": "TN - Care Management Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Pediatric Care Corporation", + "OrganizationName": "NC - Prime Internal Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - EASY CARE PEDIATRICS, LLC", + "OrganizationName": "MAYO HEALTH SYSTEMS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NH - WHOLE LIFE HEALTH CARE, P.A.", + "OrganizationName": "Mayo Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Heartcare Cardiovascular", + "OrganizationName": "Platinum Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dr. Theodore Spinks", + "OrganizationName": "OH - MONTGOMERY PEDIATRICS, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Franklin J. Dzida, MD PA", + "OrganizationName": "NC - ADVANCE FAMILY AND SPORTS MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Mancina Cardiovascular Medicine", + "OrganizationName": "OR - Integrity Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Snyder OB-GYN", + "OrganizationName": "NC - Charles S Watras MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Charles Pittle DPM PLLC", + "OrganizationName": "TX - Abdul Kadir MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arise Physician Group", + "OrganizationName": "NC - CAROLINA SPORTS AND SPINE, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Arise Physician Group", + "OrganizationName": "TX - Donna M Duran MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Clinical Neuroscience, PA", + "OrganizationName": "LA - Luke Hunter, DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Lloyd James MD", + "OrganizationName": "IL - Diamond Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - The Center for Skin Cancer Surgery,", + "OrganizationName": "MI - Packard Health, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Immediate Care Medical", + "OrganizationName": "MI - Endoscopic Solutions", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Grand Valley Neurology, Prof. LLC", + "OrganizationName": "FL - LIVE OAK MEDICAL ASSOCIATES, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Naples Gynecology", + "OrganizationName": "GA - Northwest Georgia Surgical Associat", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Schwartz Medical Group", + "OrganizationName": "NC - Mountain Laurel Internal Medicine,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Parkinson Wellness Clinic, LLC", + "OrganizationName": "Behavioral Health Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - San Antonio Orthopaedic Group", + "OrganizationName": "UT - CENTRO DE SALUD FAMILIAR", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Ramasamy Seralathan, M.D.", + "OrganizationName": "MA - RENAISSANCE FAMILY MEDICINE OF WELL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Oceanway Pediatrics", + "OrganizationName": "IA - UnityPoint Marshalltown", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Sun State Cardiology", + "OrganizationName": "MA - Valley Medical Associates Springfie", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Amazing Health Care", + "OrganizationName": "The Medical Corner", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Nicholas Capozzoli \u0026 Peter Schilder", + "OrganizationName": "IL - Cronin Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - CHARLES S. GRAHAM, D.O., P.C. dba C", + "OrganizationName": "FL - Mark Paris, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Calcagno Pediatrics, P.C.", + "OrganizationName": "ME - COASTAL MAINE INTERNAL MEDICINE, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dr. Richard Demmler", + "OrganizationName": "MA - Wareham Cardiology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - SHAHID MAHMOOD MD FAMILY PRACTICE,", + "OrganizationName": "International Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DC - Etwar McBean MD", + "OrganizationName": "Logan Square Medical Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Elisa Lear-Rayborn, DPM", + "OrganizationName": "Podiatry Group of Annapolis Ambulatory Surgical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Mohan Kareti Inc", + "OrganizationName": "Podiatry Group of Annapolis, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - KEM Health LLC", + "OrganizationName": "NC - ADMA Primary Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Joseph Aloise MD Family Prac", + "OrganizationName": "Medi-First Medical Center, P.L.L.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Genesis Health and Wellness", + "OrganizationName": "AZ - NORTH MOUNTAIN FAMILY MEDICINE, PLL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - TOTAL SLEEP CARE, LLC", + "OrganizationName": "FL - Jim Francois, DPM, PT, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Biton Medical Center", + "OrganizationName": "FL - Premier Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Shirley Mason Randall M.D., Inc.", + "OrganizationName": "TX - Texas Colorectal Clinic P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Nadia I Kreit,MD,FAAP,PLLC", + "OrganizationName": "Medici Atlanta Spine and Ortho", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Dr. Sarah Nease", + "OrganizationName": "Medici Surgical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Kim A. Kelly, M.D.,P.C.", + "OrganizationName": "SC - Coastal Podiatry, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ceron Pediatrics and Integrative Medicine", + "OrganizationName": "IN - Northside Pediatric Associates PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Eagle Health Center", + "OrganizationName": "IL - RIVERVIEW PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Sonterra Cardiovascular Institute", + "OrganizationName": "CA - Sandra Torres MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - NEW ENGLAND CONSULTANTS IN GASTROEN", + "OrganizationName": "TX - Janice R Powells MD,PA , DBA THE CH", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - USI Community Health Centers", + "OrganizationName": "MI - South Valley Internal Medicine, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - Davis Medical Clinic SC", + "OrganizationName": "MI - NORTH VALLEY INTERNAL MEDICINE, P.C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - MARGARET ALEXANDER M.D., PC", + "OrganizationName": "NY - WESTIN MEDICAL HEALTH P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Endeveren Family Practice", + "OrganizationName": "NJ - Liberty Women OB/GYN PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Fully Armored Family Health and Fit", + "OrganizationName": "CA - Michael S. Greenfield, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Greenwich Podiatry Group, LLC", + "OrganizationName": "VA - Stephen H Goldberger MD FACS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Dilip M Bera MD", + "OrganizationName": "NC - Mountainview Skin Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Kevin R. Smith, MD PA", + "OrganizationName": "TX - The Knighton Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Foot \u0026 Leg Center", + "OrganizationName": "NY - LI Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Aspen Spine \u0026 Neurosurgery Center,", + "OrganizationName": "St. Vincent's Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Comprehensive Surgical Specialists", + "OrganizationName": "CA - ARASH BERELIANI, MD, A MEDICAL CORP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Premier Endocrine Associates, SC -", + "OrganizationName": "KS - Women's Health Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - SURESH PRASAD MD PA", + "OrganizationName": "PA - East Norriton Women's Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Access Carroll", + "OrganizationName": "MI - David Patterson, D.O., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Integrative Cardiology", + "OrganizationName": "MD - Advantia Health I", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WILLIAMSON PHYSICIAN MANAGEMENT", + "OrganizationName": "Maryland Physicians Edge PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - PULMONARY AND SLEEP WELLNESS CENTER", + "OrganizationName": "NJ - Affiliates In Woman's Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - William A. Mitchell, Jr., MD", + "OrganizationName": "CT - Cardio Assc of Greater Waterbury", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "La Canada Multi-specialty Group Inc.", + "OrganizationName": "RI - East Greenwich Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ZARINE TER-POGHOSYAN MD", + "OrganizationName": "CharterCARE Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Almaden Pediatrics, Inc.", + "OrganizationName": "New University Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Saint Agnes Care", + "OrganizationName": "Our Lady Of Fatima Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Alan L. Biddinger, MD., PH.D., PC.", + "OrganizationName": "Roger Williams Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - C\u0026M Compassionate Care", + "OrganizationName": "MI - Donna J. Tal Md, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Adult \u0026 Pediatric Orthopaedic Speci", + "OrganizationName": "OR - Hand Center of Oregon, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Peter Alan Krause Medical Corporati", + "OrganizationName": "The Centers for Advanced Orthopaedics OrthoMaryland Division", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alaska Center for Pediatrics", + "OrganizationName": "AK - Avante Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arete Family Medicine - Anchorage", + "OrganizationName": "MI - Saint Clair Allergy And Asthma Cent", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Medical Park – historical (prior to Oct 1, 2019)", + "OrganizationName": "Employee Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Easter Seals Bay Area", + "OrganizationName": "Physicians at Valley View", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Catalight Care Services", + "OrganizationName": "Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Easterseals Hawaii", + "OrganizationName": "TX - Sander Orthopaedic and Sports Med", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Cashman Orthopedics, LLC", + "OrganizationName": "Paris Regional Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Ribeiro Foot and Ankle Center", + "OrganizationName": "VA - Saheli OBGYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Absolute Urgent Care of Texas Inc", + "OrganizationName": "AZ - SOUTHWEST DESERT CARDIOLOGY, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Frontline Internal Medicine", + "OrganizationName": "GA - Foothills Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Winston McIver", + "OrganizationName": "GA - Blairsville Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AK - Women's Center of the Peninsula", + "OrganizationName": "GLENN P. ROTHHAAS, D.O", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Forsyth Plastic Surgery Associates", + "OrganizationName": "ROBERT L KALB, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Optimal Performance Physical Therap", + "OrganizationName": "CA - Med Imaging Care, INC dba West LA D", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - House Call Pediatrics, LLC", + "OrganizationName": "GA - Pulmonary \u0026 Sleep Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - GRAND RIVER MEDICAL ASSOCIATES PLLC", + "OrganizationName": "CA - MOLANI MEDICAL GROUP, A PROFESSIONA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carolinas Center for Surgery", + "OrganizationName": "CA - Main Street Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dr. Crable OB/GYN P.A.", + "OrganizationName": "VA - Riversbend Enon Children's Clinic,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Complete Women Care", + "OrganizationName": "WV - Farhat Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "University Health Services", + "OrganizationName": "FL - Ridge Manor Family Med", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Endocrinology Group, PA", + "OrganizationName": "Annapolis Asthma, Pulmonary and Sleep Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Southwest Podiatry Center, LLC", + "OrganizationName": "AL - Ascension - Alabama", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PREFERRED PAIN ASSOCIATES OF ALABAMA", + "OrganizationName": "Ascension St. Vincent's", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - The Mental Health Fund, dba: Catawb", + "OrganizationName": "TX - Glen Guillet MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Mt. Scott ENT \u0026 Audiology", + "OrganizationName": "OR - Van Amburg Surgery Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Lorraine Manciet, MD", + "OrganizationName": "OH - Womankind Health \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - FamCare Clinic of North Texas, P.A", + "OrganizationName": "TN - Elite Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Choctaw Women's Clinic, PLLC Sara B", + "OrganizationName": "CA - Las Palmas OB/GYN, INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - New Kingdom Healthcare LLC", + "OrganizationName": "CA - Premier Ob Gyn Napa Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Physicians at Your Door Inc.", + "OrganizationName": "TX - Matlock Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Archview Medical Specialists", + "OrganizationName": "CO - Center For Spine And Orthopedics PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Southern Illinois Healthcare Foundation", + "OrganizationName": "NC - North Hills Internal \u0026 Integrative", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Mountain View Pediatrics", + "OrganizationName": "DC - PCRM Clinic, dba: Barnard Medical C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Tides Gastroenterology LLC", + "OrganizationName": "NY - Neal A. Sckolnick, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Wake Dermatology Associates", + "OrganizationName": "MD - Pediatric Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Harmohinder S Kochar MD PA", + "OrganizationName": "WA - Edward W Hartzler MD Inc.,PS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Orthopaedic Surgical Consultants", + "OrganizationName": "TX - Michael G. Neret", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Orthopedic Center", + "OrganizationName": "UT - Margy Batson", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Embry Womens Health", + "OrganizationName": "NFS 1", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - CHS PF River Oaks", + "OrganizationName": "FL - Sigecaps Health, LLC- EMG - Collect", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Texas Pain Consultants LLP", + "OrganizationName": "KY - Advanced Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SWICFT MEDICAL PARTNERS LLC", + "OrganizationName": "CA - Airport Playa Women's Med Grp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NV - FERDOWSIAN, GROVER \u0026 ROSLER, PLLC", + "OrganizationName": "CA - NORTHERN CALIFORNIA ORTHOPAEDIC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LPNT Rutherford Behavior Health", + "OrganizationName": "TX - ELLEN LIN MD PA DBA ADVANCED SPINE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LPNT Rutherford Physician Practices", + "OrganizationName": "CA - Joseph Tulagan MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - LPNT Rutherford Physician Practices", + "OrganizationName": "IL - Nicholas Rizzo MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Tazewell Family Healthcare, P.C.", + "OrganizationName": "KS - KANSAS KIDS HEART CENTER, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Genesis Women's Clinic", + "OrganizationName": "OK - The Center for Men's Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Covington Healthcare LLC", + "OrganizationName": "Durrani MD and Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Nashoba Valley Healthcare Group", + "OrganizationName": "Lei Chu M.D. Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Medical Group", + "OrganizationName": "TX - Durrani MD \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Tripty M Gandhi MD", + "OrganizationName": "ME - Dr. Richard Wilkins", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Hispanic Health Enterprises, LLC", + "OrganizationName": "HI - DONNA JEAN MAH MD INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Kim M Almodovar MD", + "OrganizationName": "TX - O'Meara Rosado DPM PLLC dba Foot a", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Kendall P Tabor DPM", + "OrganizationName": "OK - Perry Memorial Hospital Authority", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Pediatrics At Whitlock", + "OrganizationName": "Hunt Regional Medical Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Auburn Neurology and Sleep Assoc.", + "OrganizationName": "TX - Hunt Regional Medical Partners", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HI - Hana Health Clinic", + "OrganizationName": "UT - Hurricane Family Practice Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - South Shore Family Practice", + "OrganizationName": "TX - ROWE Network PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Ida Family Clinic", + "OrganizationName": "MI - Ram Surendran, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", + "OrganizationName": "IL - Tots To Teens, LLC DBA Glencoe Pedi", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WILSON PHYSICIAN PRACTICES", + "OrganizationName": "NY - Carewell Medical Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Bone and Joint Surgery Associates,", + "OrganizationName": "TX - San Antonio Family Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Dekalb Family Medicine", + "OrganizationName": "OK - Dr. John's Quick Med, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Kenna J Williams MD", + "OrganizationName": "FL - Pediatric ENT of South West Florida", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Waco Infectious Disease Associates", + "OrganizationName": "FL - Sacred Heart Medical Office PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Omni Med", + "OrganizationName": "OH - Community Nephrology Services, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Santana Family Care", + "OrganizationName": "NC - Legacy Dr. Leslie A. Smith MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Bellingham Women's Health, PLLC", + "OrganizationName": "CA - United Medical Doctors", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Eric Tepper MD", + "OrganizationName": "TN - Memphis Surgical Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Southwest Regional Healthcare Group", + "OrganizationName": "PA - CHIRP Master", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Center for Men's \u0026 Women's Urology", + "OrganizationName": "Treasure Valley Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Short Family Medical Center, PA", + "OrganizationName": "NY - Diabetes and Endocrine Care of Long", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Coastal Infectious Disease Consulta", + "OrganizationName": "FL - All Star Pediatric Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Yatawara Gynecology, Wellness \u0026 Aes", + "OrganizationName": "NY - Brooklyn Heart", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - SHELDON KAFER, M.D. LLC", + "OrganizationName": "WA - NORTHWEST NEUROSCIENCES, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Getwell Urgent Care", + "OrganizationName": "AL - Jackson Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MT - Peckinpaugh Oculoplastic Surgery", + "OrganizationName": "Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - G Gordon Snyder III MD", + "OrganizationName": "Jackson Hospitalists Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Mountain Sage Holistic Clinic, LLC", + "OrganizationName": "OH - Full Spectrum Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Southeast Medical Center, LLC", + "OrganizationName": "OR - Ross Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Medical Group Providence", + "OrganizationName": "Clinton Memorial Physician Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ascension Medical Group Providence DePaul Clinic", + "OrganizationName": "NY - AUDREY J. WOOLRICH, M.D., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Chris Pittman, MD, PA", + "OrganizationName": "CA - Jeffrey Von Hill DO PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "University of Toledo Physicians, LLC", + "OrganizationName": "SC - Midlands Orthopaedics, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Dr. Charles Kanaly", + "OrganizationName": "HI - Allan Wang, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Carolina Spine and Disc Center PLLC", + "OrganizationName": "CA - San Diego Sports Medicine \u0026 Orthopa", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Gibson General Hospital", + "OrganizationName": "CA - ROBERT LANCE CHARET MD, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Tri-City Foot \u0026 Ankle Center LLC", + "OrganizationName": "Cahaba Orthopedics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - BROOKSIDE PEDIATRICS P.C.", + "OrganizationName": "WV - Thomas \u0026 Hunter MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - GNO Snoring and Sinus, LLC", + "OrganizationName": "Aegis Anesthesia ParkHill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Imperial Center Family Medicine and", + "OrganizationName": "Clara Andrews, M.D. Parkhill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Premier Pediatrics", + "OrganizationName": "EHI Surgery Center of Austin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Three Moons Midwifery PLLC", + "OrganizationName": "ENT Care For Kids, PA ParkHill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Paul Long", + "OrganizationName": "Forest Lane Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dr. Thomas Lenns", + "OrganizationName": "GROUP SURGICAL PARTNERS INTEGRATED LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Metrowest Physician Services", + "OrganizationName": "North Central Anesthesia Consultants ParkHill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - A Ray of Hope: The Great Lakes Inst", + "OrganizationName": "PARKHILL ASC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SCK Health", + "OrganizationName": "PARKHILL DALLAS ASC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SCK Midwives", + "OrganizationName": "PARKHILL DALLAS IMAGING", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SCKC Specialty Clinic", + "OrganizationName": "PSN FW HOLDCO LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SKC Health Clinic", + "OrganizationName": "Park Hill Surgery Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Winfield Medical Arts", + "OrganizationName": "ParkHill Medical CBO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Bowman \u0026 Hampsey", + "OrganizationName": "Parkhill Imaging Addison", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Charles A Beard MD PA", + "OrganizationName": "Parkhill Imaging Clearfork", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Tricia A Shimer MD", + "OrganizationName": "Personalized Women's Healthcare ParkHill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NH - Londonderry Gastroenterology", + "OrganizationName": "Richard C Kaye MD ParkHill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - PPC, Inc.", + "OrganizationName": "TX - Parkhill Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HDAI Specialty Access Center (SAC) @ MecuraHealth", + "OrganizationName": "Texas Intensivists Network ParkHill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MedCura Health", + "OrganizationName": "Vanguard Anesthesia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - M.D./D.O. Associates, inc", + "OrganizationName": "Varsity Orthopedics ParkHill Affiliate", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Urgent Orthopedic Specialists, PLLC", + "OrganizationName": "VA - Prem P. Manchanda, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "McLean Orthopaedics PA", + "OrganizationName": "VA - Portsmouth Pediatrics PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Overturf Orthopedics", + "OrganizationName": "IL - Midwest Allergy Sinus Asthma, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - DARIN A. BOCIAN DPM, P.C.", + "OrganizationName": "TN - East Tennessee Primary Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - David M Mitzner", + "OrganizationName": "TX - Sun City Kidney, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Brendan P Sullivan MD", + "OrganizationName": "OH - Northwest OB/GYN Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Advanced Dermatology of the Midland", + "OrganizationName": "CA - Sebastopol Family Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Lina M. Ching MD., PA", + "OrganizationName": "David Fichman MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - West Texas Medical Care", + "OrganizationName": "Mollie Charon MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Center for Remote Medical Managemen", + "OrganizationName": "CA - Rolando Uykimpang, M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Oaklawn", + "OrganizationName": "CT - Thompson Family Medical Assoc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Pro Podiatry, LLC", + "OrganizationName": "TN - Keith Kidd NP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DMC Medical Group", + "OrganizationName": "NC - Carolina Breast Care Specialists, P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - BRENTWOOD ORTHOPEDIC AND SPINE SURG", + "OrganizationName": "NY - INNOVATIVE UROLOGY PRACTICE OF NEW", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Washington \u0026 Associates INC dba Tre", + "OrganizationName": "IL - Advanced Foot and Ankle Centers of", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Center for Womens Health", + "OrganizationName": "CT - OB/GYN Associates West Hartford", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake County Pain ASC", + "OrganizationName": "NC - Robert Auton, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Patrick T. Boylan", + "OrganizationName": "UT - UROLOGY ASSOCIATES, L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - TANYA D. MAYS MD, PLLC", + "OrganizationName": "DC - Eye One Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alliance Clinics", + "OrganizationName": "MA - Fitchburg Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Andrew Binamira", + "OrganizationName": "VA - Pediatric \u0026 Adolescent Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ID - WARREN DOPSON, M.D., P.C.", + "OrganizationName": "IL - Comprehensive Clinical Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Paul John Hayner MD PC", + "OrganizationName": "Murray Medical Associates Clinical Psychology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Zipper Uro Gyn Associates", + "OrganizationName": "Murray Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Allergy Associates Of Dearborn", + "OrganizationName": "Murray Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Lynn Parry", + "OrganizationName": "Murray-Calloway County Hospital", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Virginia Obstetrics \u0026 Gynecology, P", + "OrganizationName": "Occupational Medicine at MCCH", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IA - Iowa/Illinois Pain Consultants, P.C", + "OrganizationName": "NE - Lincoln Med Education Partnership", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Dale Klepzig MD", + "OrganizationName": "MS - East Metro Family Medical Clinic, P", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Oculoplastics \u0026 Ophthalmology at Li", + "OrganizationName": "NY - Torpey Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Nephrology Group PA", + "OrganizationName": "FL - Advanced Geriatrics \u0026 Primary Care,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Pediatric Care of Four Corners", + "OrganizationName": "MS - Jackson Neuroscience Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - David Fivenson, MD, Dermatology, PL", + "OrganizationName": "CA - Fallbrook Adult Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Amethyst Medical Group Inc", + "OrganizationName": "TX - Cy-Fair Foot Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Fastmed of NJ LLC", + "OrganizationName": "AR - John Scribner", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - The Davis Street Community Center I", + "OrganizationName": "FL - Bay Arthritis Institute Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Angelo P Morreale, DPM, PC dba The", + "OrganizationName": "MI - Metro Rheumatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - John W Middleton MD", + "OrganizationName": "FL - SW Florida Regional Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Vitacare Family Practice, PLLC", + "OrganizationName": "MA - Tri-Town Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Comtrea Community Treatment", + "OrganizationName": "Mountain Valley Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Aryan P Kadivar MD, PC", + "OrganizationName": "PA - Christine A. Phillips MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Greater Boston Podiatry Assocs", + "OrganizationName": "FL - Angelica Ramirez MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gilbert M Teixeira DO", + "OrganizationName": "TN - Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Sabu John, MD", + "OrganizationName": "TX - Family First Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mouser MLife Clinic", + "OrganizationName": "PA - Robert J Mirabile, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mouser WRI", + "OrganizationName": "OH - 910 Rapid Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sabre Health Express", + "OrganizationName": "OH - General Surgical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Healing Clinic", + "OrganizationName": "CA - Central Coast Neurological Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NE - Eric Palmquist DPM", + "OrganizationName": "AL - LBMC_Andalusia", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Ponce Primary Care", + "OrganizationName": "NY - Grace Family Medical Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Dr. Susan J. Lurie, MD", + "OrganizationName": "RI - A to Z Primary Care, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Natchez Clinic Company", + "OrganizationName": "NY - John R. Wanamaker MD PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - East Pompano Pediatrics", + "OrganizationName": "Dr. Edwin Walker Medical Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Carolina Interventional Pain Associ", + "OrganizationName": "NJ - David N Feldman MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - Comprehensive Pain Solutions, LLC", + "OrganizationName": "OH - Health Express Urgent Care Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Hand Surgery Associates, LLC", + "OrganizationName": "IL - Women's Health Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Aurora Denver Cardiology Associates", + "OrganizationName": "MA - Walter J Lee MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Other", + "OrganizationName": "TX - Permian Gastroenterology Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Ilko Family Medicine, P.A.", + "OrganizationName": "SUNSHINE PERINATOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LA - Metairie Gastroenterology", + "OrganizationName": "Sunshine Obstetric", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Front Range OB/GYN", + "OrganizationName": "IN - Richard A Stanley DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Joseph H. Crumbliss,MD, PA", + "OrganizationName": "IL - Anthony M Auriemma MD, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MIDDLETON FAMILY MEDICINE", + "OrganizationName": "FL - Scott Elsbree MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "New England House Calls, LLC", + "OrganizationName": "KY - Associates In Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Desoto Foot Care", + "OrganizationName": "AL - Newton Neurology Assoc, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Alpha OBGYN", + "OrganizationName": "Bella Health + Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - MaryEllen Cavalier, MD", + "OrganizationName": "MD - Maryland Brain \u0026 Spine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Burrows Internal Medicine", + "OrganizationName": "The NEW Progam", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Castle Pines Family Practice", + "OrganizationName": "CA - Arnold S Kremer DO A Professional C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Castle Pines Urgent Care", + "OrganizationName": "TX - South Texas Spinal Clinic, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Columbine Family Practice", + "OrganizationName": "FL - Access Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Comprehensive Pain Specialists", + "OrganizationName": "IN - Paul K Ho MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Comprehensive Women's Care", + "OrganizationName": "NJ - Julia Riftine MD Obstetrics and Gyn", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lone Tree Family Practice", + "OrganizationName": "CUCUMBER WELLNESS, INC.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lone Tree Pediatrics", + "OrganizationName": "Happier Living", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OnPoint Family Care - DTC", + "OrganizationName": "Mellow Medical Inc A Professional Corporation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OnPoint Family Medicine @ Dakota Ridge", + "OrganizationName": "MD - Pediatric Care Corporation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OnPoint Internal Medicine @ Harvard Park", + "OrganizationName": "MA - EASY CARE PEDIATRICS, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OnPoint Internal Medicine @ Ridgeline", + "OrganizationName": "NH - WHOLE LIFE HEALTH CARE, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OnPoint Medical Group", + "OrganizationName": "IL - Heartcare Cardiovascular", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OnPoint Urgent Care LLC", + "OrganizationName": "TX - Dr. Theodore Spinks", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PAHS OnPoint Imaging", + "OrganizationName": "TX - Franklin J. Dzida, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Parker Square Family Medicine", + "OrganizationName": "KS - Mancina Cardiovascular Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Reflect Health, LLC", + "OrganizationName": "NY - Snyder OB-GYN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rose Pediatrics", + "OrganizationName": "TX - Charles Pittle DPM PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Podiatry Associates of Texas, PLLC", + "OrganizationName": "Arise Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Ponte Vedra Medical Center", + "OrganizationName": "TX - Arise Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Lori Oakley Coe MD", + "OrganizationName": "TX - Clinical Neuroscience, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Dr. Martin Barrios", + "OrganizationName": "FL - Lloyd James MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WI - ELKHORN FAMILY CLINIC, S.C.", + "OrganizationName": "FL - The Center for Skin Cancer Surgery,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Complete Health Medical P.C.", + "OrganizationName": "Immediate Care Medical", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Premier Foot Clinic PC", + "OrganizationName": "CO - Grand Valley Neurology, Prof. LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SC - Columbia Neurological Associates PA", + "OrganizationName": "FL - Naples Gynecology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Generation Clinical Partners", + "OrganizationName": "MA - Schwartz Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NORTHWIND SLEEP", + "OrganizationName": "AZ - Parkinson Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SAINT TERESA CLINIC", + "OrganizationName": "TX - San Antonio Orthopaedic Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Dekalb Womens Specialists", + "OrganizationName": "CA - Ramasamy Seralathan, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Stephen L. Matarese DO", + "OrganizationName": "FL - Oceanway Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - Allison B Alexander MD PLLC", + "OrganizationName": "AZ - Sun State Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OH - Riverview ENT Center of Central Ohi", + "OrganizationName": "TX - Amazing Health Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - CHS Natchez HBP", + "OrganizationName": "MD - Nicholas Capozzoli \u0026 Peter Schilder", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - William A. Peper, M.D. P.A.", + "OrganizationName": "OR - CHARLES S. GRAHAM, D.O., P.C. dba C", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "HI - Aloha Pediatrics", + "OrganizationName": "OR - Calcagno Pediatrics, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MedLink Georgia", + "OrganizationName": "TX - Dr. Richard Demmler", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", + "OrganizationName": "MD - SHAHID MAHMOOD MD FAMILY PRACTICE,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WESTERN CAROLINA PHYSICIAN PRACTICES", + "OrganizationName": "DC - Etwar McBean MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - AH FAMILY NURSING CARE, INC", + "OrganizationName": "AK - Elisa Lear-Rayborn, DPM", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OR - James J. Biemer Jr., M.D., P.C.", + "OrganizationName": "OH - Mohan Kareti Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Sheri Hsu MD", + "OrganizationName": "GA - KEM Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Northland Foot and Ankle Specialist", + "OrganizationName": "FL - Joseph Aloise MD Family Prac", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "BARRY J. BROCK,MD INC", + "OrganizationName": "TX - Genesis Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CANDICE DANESHVAR MD INC", + "OrganizationName": "VA - TOTAL SLEEP CARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Daniel Niku MD", + "OrganizationName": "FL - Biton Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MELISSA GUTIERREZ MD INC", + "OrganizationName": "VA - Shirley Mason Randall M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PEYMAN BANOONI MD INC", + "OrganizationName": "TX - Nadia I Kreit,MD,FAAP,PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arkansas Center for Arthroscopy, PA", + "OrganizationName": "WV - Dr. Sarah Nease", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Innovative Orthopedic Solutions, LLC", + "OrganizationName": "MD - Kim A. Kelly, M.D.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "JAMES R BOYLE MD", + "OrganizationName": "Ceron Pediatrics and Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Maline Orthopedics. PLLC", + "OrganizationName": "IL - Eagle Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NWA Sports Medicine Institute", + "OrganizationName": "TX - Sonterra Cardiovascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Hartland Family Physicians, P.C.", + "OrganizationName": "MA - NEW ENGLAND CONSULTANTS IN GASTROEN", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Parker County Hospital District - P", + "OrganizationName": "IN - USI Community Health Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Florida Pain Center Of Naples", + "OrganizationName": "WI - Davis Medical Clinic SC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Sunshine Doctors, LLC", + "OrganizationName": "MD - MARGARET ALEXANDER M.D., PC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Rickman Family Medical Clinic", + "OrganizationName": "NE - Endeveren Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Gibson General Hospital Inc", + "OrganizationName": "IN - Fully Armored Family Health and Fit", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Midwest Urogynecology, L.L.C.", + "OrganizationName": "RI - Greenwich Podiatry Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Munson", + "OrganizationName": "NJ - Dilip M Bera MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women's Health Specialists PC", + "OrganizationName": "TX - Kevin R. Smith, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Beverly Hills Skin Care Inst", + "OrganizationName": "Family Foot \u0026 Leg Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ARTHUR H. KATZ, M.D., S.C.", + "OrganizationName": "OR - Aspen Spine \u0026 Neurosurgery Center,", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CBC, LLC", + "OrganizationName": "IN - Comprehensive Surgical Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Great Hills ENT", + "OrganizationName": "IL - Premier Endocrine Associates, SC -", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - ZAREE BABAKHANIAN, M.D., INC.", + "OrganizationName": "TX - SURESH PRASAD MD PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Paradigm Hormones", + "OrganizationName": "MD - Access Carroll", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Mind Body Pediatric Clinic PLLC", + "OrganizationName": "NY - Integrative Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Alec Y Lui MD", + "OrganizationName": "MI - PULMONARY AND SLEEP WELLNESS CENTER", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Integrative Sports Medicine \u0026 Welln", + "OrganizationName": "MA - William A. Mitchell, Jr., MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Permian Basin Urology Center", + "OrganizationName": "La Canada Multi-specialty Group Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - HERVEY WEITZMAN M.D., LLC", + "OrganizationName": "ZARINE TER-POGHOSYAN MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Dr. C. S. Michael, LLC", + "OrganizationName": "CA - Almaden Pediatrics, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Vincent F Sayan MD", + "OrganizationName": "Saint Agnes Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WV - PEDIATRIC GASTROENTEROLOGY OF CHARL", + "OrganizationName": "MI - Blake Fenkell, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Newhope Joint \u0026 Spine Med Ctr", + "OrganizationName": "MI - C\u0026M Compassionate Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Amir Saffarian MD", + "OrganizationName": "CA - Adult \u0026 Pediatric Orthopaedic Speci", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Quality Medical Center, Inc", + "OrganizationName": "CA - Peter Alan Krause Medical Corporati", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - Center For Women's Care, P.C.", + "OrganizationName": "Alaska Center for Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PA - Philadelphia Foot/Ankle Assocs", + "OrganizationName": "Arete Family Medicine - Anchorage", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MIDLAND EMERGENCY MANAGERS PLLC", + "OrganizationName": "Medical Park – historical (prior to Oct 1, 2019)", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Permian Cardiology", + "OrganizationName": "CA - Easter Seals Bay Area", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "West Texas Orthopedics", + "OrganizationName": "Catalight Care Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Alpha Family Medicine", + "OrganizationName": "Easterseals Hawaii", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Center For Hypertension \u0026 INT", + "OrganizationName": "MD - Cashman Orthopedics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Harry S Crawford III MD", + "OrganizationName": "VA - Ribeiro Foot and Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - Atkinson Internal Medicine \u0026 Associ", + "OrganizationName": "TX - Absolute Urgent Care of Texas Inc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "SOUTH SOUND NEUROSURGERY", + "OrganizationName": "GA - Frontline Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Heart \u0026 Lung Center of Southeast Te", + "OrganizationName": "SC - Winston McIver", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Access Medicine \u0026 Nephrology", + "OrganizationName": "AK - Women's Center of the Peninsula", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AL - Cheryl R Goyne MD", + "OrganizationName": "NC - Forsyth Plastic Surgery Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NJ - PARK AVE MEDICAL CENTER L.L.C.", + "OrganizationName": "NC - Optimal Performance Physical Therap", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Affinity Birmingham", + "OrganizationName": "LA - House Call Pediatrics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OK - Caney Valley Medical Clinic", + "OrganizationName": "MI - GRAND RIVER MEDICAL ASSOCIATES PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CO - Brad A. Case MD PA", + "OrganizationName": "Carolinas Center for Surgery", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Sandhills Sports Performance", + "OrganizationName": "TX - Dr. Crable OB/GYN P.A.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHRISTUS Health Clinic Irving", + "OrganizationName": "CA - Complete Women Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHRISTUS Physician Group", + "OrganizationName": "University Health Services", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CHRISTUS St Vincent", + "OrganizationName": "TX - Texas Endocrinology Group, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Christus Medical Group", + "OrganizationName": "OR - Southwest Podiatry Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - CHRISTUS Clinicals Only", + "OrganizationName": "PREFERRED PAIN ASSOCIATES OF ALABAMA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Metrowest Podiatry Services, P.C.", + "OrganizationName": "NC - The Mental Health Fund, dba: Catawb", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CRH Physician Practices", + "OrganizationName": "OR - Mt. Scott ENT \u0026 Audiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - CRH Physician Practices", + "OrganizationName": "AZ - Lorraine Manciet, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AccessMD Urgent Care", + "OrganizationName": "TX - FamCare Clinic of North Texas, P.A", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dayton Outpatient Center", + "OrganizationName": "OK - Choctaw Women's Clinic, PLLC Sara B", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Liberty Family Physicians", + "OrganizationName": "MN - New Kingdom Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Surgical Associates", + "OrganizationName": "IL - Physicians at Your Door Inc.", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Michigan Orthopaedic Surgeons", + "OrganizationName": "Archview Medical Specialists", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IN - Ascension - Indianapolis EAP", + "OrganizationName": "Southern Illinois Healthcare Foundation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Sriram Iyer, Medical P.C. (EMG)", + "OrganizationName": "NC - Mountain View Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Michael Hanks Pediatrics", + "OrganizationName": "SC - Tides Gastroenterology LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Hayward Family Care PC", + "OrganizationName": "NC - Wake Dermatology Associates", "NPIID": "", "OrganizationZipCode": "" } diff --git a/resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json b/resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json index d33980300..87599061f 100644 --- a/resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json +++ b/resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json @@ -1,55 +1,55 @@ { "Endpoints": [ { - "URL": "https://fhir.healthtogo.me/oauth/imed.assa", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.assa", "OrganizationName": "Advanced Southern Surgical ASSA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.bourque", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.bourque", "OrganizationName": "Daniel R. Bourque, M.D., APMC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.efm", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.efm", "OrganizationName": "Edwards Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.fammedpc", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.fammedpc", "OrganizationName": "Family Medicine, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.lhc", - "OrganizationName": "Louisiana Heart Center ** LHC", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.welshfamily", + "OrganizationName": "LCMH TCW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.noim", - "OrganizationName": "North Oaks Internal Medicine", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.lhc", + "OrganizationName": "Louisiana Heart Center ** LHC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.degeyter", - "OrganizationName": "Roland J. Degeyter, M.D., APMC", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.noim", + "OrganizationName": "North Oaks Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.welshfamily", - "OrganizationName": "The Clinic of Welsh", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.degeyter", + "OrganizationName": "Roland J. Degeyter, M.D., APMC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.healthtogo.me/oauth/imed.vsc", + "URL": "https://fhir.healthtogo.me/fhir/r4/imed.vsc", "OrganizationName": "Vascular Specialty C VSC", "NPIID": "", "OrganizationZipCode": "" diff --git a/shinydashboard/lantern/functions/endpoints.R b/shinydashboard/lantern/functions/endpoints.R index 2745bc697..4b9efa98b 100644 --- a/shinydashboard/lantern/functions/endpoints.R +++ b/shinydashboard/lantern/functions/endpoints.R @@ -4,6 +4,8 @@ library(purrr) # Package that makes it easier to work with dates and times for getting avg response times # nolint library(lubridate) +timer <- reactiveTimer(1440 * 60 * 1000) + # Get the Endpoint export table and clean up for UI get_endpoint_export_tbl <- function(db_tables) { @@ -926,73 +928,54 @@ get_details_page_info <- function(endpointURL, requestedFhirVersion, db_connecti } database_fetcher <- reactive({ - + timer() + start_time <- Sys.time() + message("database_fetcher ***************************************") app_data$fhir_endpoint_totals(get_endpoint_totals_list(db_tables)) - + app_data$vendor_count_tbl(get_fhir_version_vendor_count(app$endpoint_export_tbl())) app_data$response_tally(get_response_tally_list(db_tables)) - app_data$http_pct(get_http_response_summary_tbl(db_tables)) - - app_data$vendor_count_tbl(get_fhir_version_vendor_count(app$endpoint_export_tbl())) - app_data$endpoint_resource_types(get_fhir_resource_types(db_connection)) - app_data$capstat_fields(get_capstat_fields(db_connection)) - app_data$supported_profiles(get_supported_profiles(db_connection)) - - app_data$capstat_values(get_capstat_values(db_connection)) - app_data$last_updated(now("UTC")) - app_data$security_endpoints(get_security_endpoints(db_connection)) - app_data$security_endpoints_tbl(get_security_endpoints_tbl(db_connection)) - app_data$auth_type_counts(get_auth_type_count(isolate(app_data$security_endpoints()))) - app_data$security_code_list(isolate(app_data$security_endpoints()) %>% distinct(code) %>% pull(code)) - app_data$smart_response_capabilities(get_smart_response_capabilities(db_connection)) - app_data$well_known_endpoints_tbl(get_well_known_endpoints_tbl(db_connection)) - app_data$contact_info_tbl(get_contact_information(db_connection)) - app_data$well_known_endpoints_no_doc(get_well_known_endpoints_no_doc(db_connection)) - app_data$endpoint_security_counts(get_endpoint_security_counts(db_connection)) - app_data$implementation_guide(get_implementation_guide(db_connection)) - app_data$endpoint_locations(get_endpoint_locations(db_connection)) - app_data$capstat_sizes_tbl(get_cap_stat_sizes(db_connection)) - app_data$validation_tbl(get_validation_results(db_connection)) - + end_time <- Sys.time() + time_difference <- as.numeric(difftime(end_time, start_time, units = "secs")) + message(" database_fetcher execution time ******************************************:", time_difference, "seconds\n") + database_fetch(0) }) app_fetcher <- reactive({ - + timer() + message("app_fetcher ***************************************") + start_time <- Sys.time() app$endpoint_export_tbl(get_endpoint_export_tbl(db_tables)) - app$fhir_version_list_no_capstat(get_fhir_version_list(app$endpoint_export_tbl(), TRUE)) - app$fhir_version_list(get_fhir_version_list(app$endpoint_export_tbl(), FALSE)) - app$distinct_fhir_version_list_no_capstat(get_distinct_fhir_version_list_no_capstat(app$endpoint_export_tbl())) - app$distinct_fhir_version_list(get_distinct_fhir_version_list(app$endpoint_export_tbl())) - app$vendor_list(get_vendor_list(app$endpoint_export_tbl())) - app$http_response_code_tbl( read_csv(here(root, "http_codes.csv"), col_types = cols(code = "i")) %>% mutate(code_chr = as.character(code)) ) - app$zip_to_zcta(read_csv(here(root, "zipcode_zcta.csv"), col_types = cols(zipcode = "c", zcta = "c"))) + end_time <- Sys.time() + time_difference <- as.numeric(difftime(end_time, start_time, units = "secs")) + message("app_fetcher execution time: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& ", time_difference, "seconds\n") }) diff --git a/shinydashboard/lantern/server.R b/shinydashboard/lantern/server.R index 793c61825..175ee247f 100644 --- a/shinydashboard/lantern/server.R +++ b/shinydashboard/lantern/server.R @@ -9,6 +9,7 @@ library(dygraphs) function(input, output, session) { #nolint # Trigger this observer every time the session changes, which is on first load of page, and switch tab to tab stored in url observeEvent(session, { + message(sprintf("I am in observe session *********************************** %s", database_fetch())) query <- parseQueryString(session$clientData$url_search) if (!is.null(query[["tab"]]) && (toString(query[["tab"]]) %in% c("dashboard_tab", "endpoints_tab", "resource_tab", "implementation_tab", "fields_tab", "profile_tab", "values_tab", "validations_tab", "security_tab", "smartresponse_tab", "about_tab", "contacts_tab"))) { current_tab <- toString(query[["tab"]]) @@ -19,7 +20,9 @@ function(input, output, session) { #nolint }, priority = 100) observeEvent(database_fetch, { + message(sprintf("I am in observe event *********************************** %s", database_fetch())) if (database_fetch() == 1) { + message("I am inside observe event ***********************************") show_modal_spinner( spin = "double-bounce", color = "#112446",